-
-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add 2 interfaces for discoverable and searchable reference providers
Signed-off-by: Julien Veyssier <[email protected]>
- Loading branch information
Showing
2 changed files
with
90 additions
and
0 deletions.
There are no files selected for viewing
54 changes: 54 additions & 0 deletions
54
lib/public/Collaboration/Reference/IDiscoverableReferenceProvider.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} |
36 changes: 36 additions & 0 deletions
36
lib/public/Collaboration/Reference/ISearchableReferenceProvider.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} |