2016-08-08 21:31:26 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2024-05-23 07:26:56 +00:00
|
|
|
* SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
2016-08-08 21:31:26 +00:00
|
|
|
*/
|
|
|
|
namespace OCP\Settings;
|
|
|
|
|
2016-08-10 13:21:25 +00:00
|
|
|
use OCP\AppFramework\Http\TemplateResponse;
|
2016-08-08 21:31:26 +00:00
|
|
|
|
2016-08-11 17:33:37 +00:00
|
|
|
/**
|
|
|
|
* @since 9.1
|
|
|
|
*/
|
2016-08-11 12:48:21 +00:00
|
|
|
interface ISettings {
|
2016-08-08 21:31:26 +00:00
|
|
|
/**
|
2016-08-10 13:21:25 +00:00
|
|
|
* @return TemplateResponse returns the instance with all parameters set, ready to be rendered
|
2016-08-11 12:48:21 +00:00
|
|
|
* @since 9.1
|
2016-08-08 21:31:26 +00:00
|
|
|
*/
|
2016-08-10 13:21:25 +00:00
|
|
|
public function getForm();
|
2016-08-08 21:31:26 +00:00
|
|
|
|
|
|
|
/**
|
2021-01-22 11:00:32 +00:00
|
|
|
* @return string|null the section ID, e.g. 'sharing' or null to not show the setting
|
2016-08-11 12:48:21 +00:00
|
|
|
* @since 9.1
|
2016-08-08 21:31:26 +00:00
|
|
|
*/
|
|
|
|
public function getSection();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return int whether the form should be rather on the top or bottom of
|
|
|
|
* the admin section. The forms are arranged in ascending order of the
|
|
|
|
* priority values. It is required to return a value between 0 and 100.
|
|
|
|
*
|
|
|
|
* E.g.: 70
|
2016-08-11 12:48:21 +00:00
|
|
|
* @since 9.1
|
2016-08-08 21:31:26 +00:00
|
|
|
*/
|
|
|
|
public function getPriority();
|
|
|
|
}
|