Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArthur Schiwon <blizzz@arthur-schiwon.de>2016-08-11 15:48:21 +0300
committerArthur Schiwon <blizzz@arthur-schiwon.de>2016-08-11 15:48:21 +0300
commit14ddf9d923ba78a9b938d6eb6050d71aaef22ed6 (patch)
treea99f04e1a2569421c522e7a28c5e9c8381930cab /lib/public/Settings
parentf3b15a9ab97ce4498bafc731dc24350e98a7cb51 (diff)
rename IAdmin to ISettings, the interface is not bound to a specific settings scope
Diffstat (limited to 'lib/public/Settings')
-rw-r--r--lib/public/Settings/ISettings.php (renamed from lib/public/Settings/IAdmin.php)5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/public/Settings/IAdmin.php b/lib/public/Settings/ISettings.php
index 74977256a18..07d265a533e 100644
--- a/lib/public/Settings/IAdmin.php
+++ b/lib/public/Settings/ISettings.php
@@ -25,15 +25,17 @@ namespace OCP\Settings;
use OCP\AppFramework\Http\TemplateResponse;
-interface IAdmin {
+interface ISettings {
/**
* @return TemplateResponse returns the instance with all parameters set, ready to be rendered
+ * @since 9.1
*/
public function getForm();
/**
* @return string the section ID, e.g. 'sharing'
+ * @since 9.1
*/
public function getSection();
@@ -43,6 +45,7 @@ interface IAdmin {
* priority values. It is required to return a value between 0 and 100.
*
* E.g.: 70
+ * @since 9.1
*/
public function getPriority();
}