Skip to content

Commit

Permalink
add 2 interfaces for discoverable and searchable reference providers
Browse files Browse the repository at this point in the history
Signed-off-by: Julien Veyssier <[email protected]>
  • Loading branch information
julien-nc committed Dec 5, 2022
1 parent e36e92b commit 3be526e
Show file tree
Hide file tree
Showing 2 changed files with 90 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
<?php

declare(strict_types=1);
/**
* @copyright Copyright (c) 2022 Julien Veyssier <[email protected]>
*
* @author Julien Veyssier <[email protected]>
*
* @license GNU AGPL version 3 or any later version
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

namespace OCP\Collaboration\Reference;

/**
* @since 26.0.0
*/
interface IDiscoverableReferenceProvider extends IReferenceProvider {
/**
* @return string Unique id that identifies the reference provider
* @since 26.0.0
*/
public function getId(): string;

/**
* @return string User facing title of the widget
* @since 26.0.0
*/
public function getTitle(): string;

/**
* @return int Initial order for reference provider sorting
* @since 26.0.0
*/
public function getOrder(): int;

/**
* @return string css class that displays an icon next to the reference provider title
* @since 26.0.0
*/
public function getIconClass(): string;
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<?php

declare(strict_types=1);
/**
* @copyright Copyright (c) 2022 Julien Veyssier <[email protected]>
*
* @author Julien Veyssier <[email protected]>
*
* @license GNU AGPL version 3 or any later version
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

namespace OCP\Collaboration\Reference;

/**
* @since 26.0.0
*/
interface ISearchableReferenceProvider extends IDiscoverableReferenceProvider {
/**
* @return string[] list of search provider IDs that can be used by the vue-richtext picker
* @since 26.0.0
*/
public function getSupportedSearchProviderIds(): array;
}

0 comments on commit 3be526e

Please sign in to comment.