aboutsummaryrefslogtreecommitdiffstats
path: root/apps/accessibility/lib/Settings/Personal.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/accessibility/lib/Settings/Personal.php')
-rw-r--r--apps/accessibility/lib/Settings/Personal.php110
1 files changed, 0 insertions, 110 deletions
diff --git a/apps/accessibility/lib/Settings/Personal.php b/apps/accessibility/lib/Settings/Personal.php
deleted file mode 100644
index 00653d48571..00000000000
--- a/apps/accessibility/lib/Settings/Personal.php
+++ /dev/null
@@ -1,110 +0,0 @@
-<?php
-/**
- * @copyright Copyright (c) 2018 John Molakvoæ <skjnldsv@protonmail.com>
- * @copyright Copyright (c) 2019 Janis Köhr <janiskoehr@icloud.com>
- *
- * @author Christoph Wurst <christoph@winzerhof-wurst.at>
- * @author John Molakvoæ <skjnldsv@protonmail.com>
- * @author Roeland Jago Douma <roeland@famdouma.nl>
- *
- * @license GNU AGPL version 3 or any later version
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as
- * published by the Free Software Foundation, either version 3 of the
- * License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- */
-namespace OCA\Accessibility\Settings;
-
-use OCA\Accessibility\AccessibilityProvider;
-use OCP\AppFramework\Http\TemplateResponse;
-use OCP\AppFramework\Services\IInitialState;
-use OCP\IConfig;
-use OCP\IUserSession;
-use OCP\Settings\ISettings;
-use OCP\Util;
-
-class Personal implements ISettings {
-
- /** @var string */
- protected $appName;
-
- /** @var IConfig */
- private $config;
-
- /** @var IUserSession */
- private $userSession;
-
- /** @var AccessibilityProvider */
- private $accessibilityProvider;
-
- /** @var IInitialState */
- private $initialStateService;
-
- public function __construct(string $appName,
- IConfig $config,
- IUserSession $userSession,
- AccessibilityProvider $accessibilityProvider,
- IInitialState $initialStateService) {
- $this->appName = $appName;
- $this->config = $config;
- $this->userSession = $userSession;
- $this->accessibilityProvider = $accessibilityProvider;
- $this->initialStateService = $initialStateService;
- }
-
- /**
- * @return TemplateResponse returns the instance with all parameters set, ready to be rendered
- * @since 9.1
- */
- public function getForm(): TemplateResponse {
- Util::addScript('accessibility', 'accessibility');
- Util::addStyle('accessibility', 'style');
-
- $availableConfig = [
- 'themes' => $this->accessibilityProvider->getThemes(),
- 'fonts' => $this->accessibilityProvider->getFonts(),
- 'highcontrast' => $this->accessibilityProvider->getHighContrast()
- ];
-
- $userConfig = [
- 'highcontrast' => $this->config->getUserValue($this->userSession->getUser()->getUID(), $this->appName, 'highcontrast', false),
- 'theme' => $this->config->getUserValue($this->userSession->getUser()->getUID(), $this->appName, 'theme', false),
- 'font' => $this->config->getUserValue($this->userSession->getUser()->getUID(), $this->appName, 'font', false)
- ];
-
- $this->initialStateService->provideInitialState('available-config', $availableConfig);
- $this->initialStateService->provideInitialState('user-config', $userConfig);
-
- return new TemplateResponse($this->appName, 'settings-personal');
- }
-
- /**
- * @return string the section ID, e.g. 'sharing'
- * @since 9.1
- */
- public function getSection(): string {
- return $this->appName;
- }
-
- /**
- * @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
- * @since 9.1
- */
- public function getPriority(): int {
- return 40;
- }
-}