12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?php
- declare(strict_types=1);
- /**
- * SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
- * SPDX-License-Identifier: AGPL-3.0-or-later
- */
- namespace OC\Activity;
- use OCP\Activity\ActivitySettings;
- use OCP\Activity\ISetting;
- use OCP\IL10N;
- /**
- * Adapt the old interface based settings into the new abstract
- * class based one
- */
- class ActivitySettingsAdapter extends ActivitySettings {
- private $oldSettings;
- private $l10n;
- public function __construct(ISetting $oldSettings, IL10N $l10n) {
- $this->oldSettings = $oldSettings;
- $this->l10n = $l10n;
- }
- public function getIdentifier() {
- return $this->oldSettings->getIdentifier();
- }
- public function getName() {
- return $this->oldSettings->getName();
- }
- public function getGroupIdentifier() {
- return 'other';
- }
- public function getGroupName() {
- return $this->l10n->t('Other activities');
- }
- public function getPriority() {
- return $this->oldSettings->getPriority();
- }
- public function canChangeMail() {
- return $this->oldSettings->canChangeMail();
- }
- public function isDefaultEnabledMail() {
- return $this->oldSettings->isDefaultEnabledMail();
- }
- }
|