← Back
Editing: AdminSettings.php
<?php /** * SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors * SPDX-License-Identifier: AGPL-3.0-or-later */ namespace OCA\Contacts\Settings; use OCA\Contacts\AppInfo\Application; use OCP\AppFramework\Http\TemplateResponse; use OCP\AppFramework\Services\IInitialState; use OCP\IConfig; use OCP\Settings\ISettings; class AdminSettings implements ISettings { protected $appName; /** * Admin constructor. * * @param IConfig $config * @param IL10N $l */ public function __construct( private IConfig $config, private IInitialState $initialState, ) { $this->appName = Application::APP_ID; } /** * @return TemplateResponse */ #[\Override] public function getForm() { foreach (Application::AVAIL_SETTINGS as $key => $default) { $data = $this->config->getAppValue($this->appName, $key, $default); $this->initialState->provideInitialState($key, $data); } return new TemplateResponse($this->appName, 'settings/admin'); } /** * @return string the section ID, e.g. 'sharing' */ #[\Override] public function getSection() { return 'groupware'; } /** * @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. */ #[\Override] public function getPriority() { return 75; } }
Save File
Cancel