mirror of
https://github.com/nextcloud/server.git
synced 2024-12-29 00:18:42 +00:00
dae7c159f7
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
40 lines
913 B
PHP
40 lines
913 B
PHP
<?php
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
namespace OCP\Capabilities;
|
|
|
|
/**
|
|
* Minimal interface that has to be implemented for a class to be considered
|
|
* a capability.
|
|
*
|
|
* In an application use \OCP\AppFramework\Bootstrap\IRegistrationContext::registerCapability
|
|
* to register capabilities.
|
|
*
|
|
* @since 8.2.0
|
|
*/
|
|
interface ICapability {
|
|
/**
|
|
* Function an app uses to return the capabilities
|
|
*
|
|
* ```php
|
|
* return [
|
|
* 'myapp' => [
|
|
* 'awesomefeature' => true,
|
|
* 'featureversion' => 3,
|
|
* ],
|
|
* 'morecomplex' => [
|
|
* 'a' => [1, 2],
|
|
* ],
|
|
* ];
|
|
* ```
|
|
*
|
|
* @return array<string, array<string, mixed>> Indexed array containing the app's capabilities
|
|
* @since 8.2.0
|
|
*/
|
|
public function getCapabilities();
|
|
}
|