2016-08-08 17:31:26 -04:00
|
|
|
<?php
|
|
|
|
|
/**
|
2024-05-23 03:26:56 -04:00
|
|
|
* SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
2016-08-08 17:31:26 -04:00
|
|
|
*/
|
|
|
|
|
namespace OCP\Settings;
|
|
|
|
|
|
2016-08-10 09:21:25 -04:00
|
|
|
use OCP\AppFramework\Http\TemplateResponse;
|
2016-08-08 17:31:26 -04:00
|
|
|
|
2016-08-11 13:33:37 -04:00
|
|
|
/**
|
|
|
|
|
* @since 9.1
|
|
|
|
|
*/
|
2016-08-11 08:48:21 -04:00
|
|
|
interface ISettings {
|
2016-08-08 17:31:26 -04:00
|
|
|
/**
|
2016-08-10 09:21:25 -04:00
|
|
|
* @return TemplateResponse returns the instance with all parameters set, ready to be rendered
|
2016-08-11 08:48:21 -04:00
|
|
|
* @since 9.1
|
2016-08-08 17:31:26 -04:00
|
|
|
*/
|
2016-08-10 09:21:25 -04:00
|
|
|
public function getForm();
|
2016-08-08 17:31:26 -04:00
|
|
|
|
|
|
|
|
/**
|
2021-01-22 06:00:32 -05:00
|
|
|
* @return string|null the section ID, e.g. 'sharing' or null to not show the setting
|
2016-08-11 08:48:21 -04:00
|
|
|
* @since 9.1
|
2016-08-08 17:31:26 -04: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 08:48:21 -04:00
|
|
|
* @since 9.1
|
2016-08-08 17:31:26 -04:00
|
|
|
*/
|
|
|
|
|
public function getPriority();
|
|
|
|
|
}
|