mirror of
https://github.com/nextcloud/server.git
synced 2025-02-11 11:39:27 +00:00
381077028a
Signed-off-by: provokateurin <kate@provokateurin.de>
30 lines
561 B
PHP
30 lines
561 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
namespace OCA\DAV\CalDAV\Activity\Setting;
|
|
|
|
use OCP\Activity\ActivitySettings;
|
|
use OCP\IL10N;
|
|
|
|
abstract class CalDAVSetting extends ActivitySettings {
|
|
/**
|
|
* @param IL10N $l
|
|
*/
|
|
public function __construct(
|
|
protected IL10N $l,
|
|
) {
|
|
}
|
|
|
|
public function getGroupIdentifier() {
|
|
return 'calendar';
|
|
}
|
|
|
|
public function getGroupName() {
|
|
return $this->l->t('Calendar, contacts and tasks');
|
|
}
|
|
}
|