* @copyright Loic Blot 2017 */ namespace OCA\Weather\Settings; use OCP\AppFramework\Http\TemplateResponse; use OCP\IL10N; use OCP\IURLGenerator; use OCP\Settings\ISettings; class Admin implements ISettings { /** @var IL10N */ private $l; /** @var IURLGenerator */ private $urlGenerator; /** * @param IL10N $l10n */ public function __construct(IL10N $l10n, IURLGenerator $urlGenerator) { $this->l = $l10n; $this->urlGenerator = $urlGenerator; } /** * @return TemplateResponse */ public function getForm() { $params = [ ]; return new TemplateResponse('weather', 'admin', $params); } /** * @return string the section ID, e.g. 'sharing' */ public function getSection() { return 'additional'; } /** * @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. * * keep the server setting at the top, right after "server settings" */ public function getPriority() { return 0; } }; ?>