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->initialStateService->provideInitialState($this->appName, $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; } }