initialState->provideInitialState('create_example_event', $this->exampleEventService->shouldCreateExampleEvent()); $this->initialState->provideInitialState('has_custom_example_event', $this->exampleEventService->hasCustomExampleEvent()); $this->initialState->provideInitialState('enableDefaultContact', $this->exampleContactService->isDefaultContactEnabled()); $this->initialState->provideInitialState('hasCustomDefaultContact', $this->appConfig->getAppValueBool('hasCustomDefaultContact')); Util::addStyle(Application::APP_ID, 'settings-admin-example-content'); Util::addScript(Application::APP_ID, 'settings-admin-example-content'); return new TemplateResponse(Application::APP_ID, 'settings-admin-example-content'); } #[\Override] public function getSection(): ?string { return 'groupware'; } #[\Override] public function getPriority(): int { return 10; } }