aboutsummaryrefslogtreecommitdiffstats
path: root/apps/settings/lib/Sections/Personal/Availability.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/settings/lib/Sections/Personal/Availability.php')
-rw-r--r--apps/settings/lib/Sections/Personal/Availability.php39
1 files changed, 39 insertions, 0 deletions
diff --git a/apps/settings/lib/Sections/Personal/Availability.php b/apps/settings/lib/Sections/Personal/Availability.php
new file mode 100644
index 00000000000..e12e41ea800
--- /dev/null
+++ b/apps/settings/lib/Sections/Personal/Availability.php
@@ -0,0 +1,39 @@
+<?php
+
+declare(strict_types=1);
+
+/**
+ * SPDX-FileCopyrightText: 2022 Nextcloud GmbH and Nextcloud contributors
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ */
+
+namespace OCA\Settings\Sections\Personal;
+
+use OCP\IL10N;
+use OCP\IURLGenerator;
+use OCP\Settings\IIconSection;
+
+class Availability implements IIconSection {
+
+ public function __construct(
+ private IL10N $l,
+ private IURLGenerator $urlGenerator,
+ ) {
+ }
+
+ public function getIcon(): string {
+ return $this->urlGenerator->imagePath('dav', 'schedule.svg');
+ }
+
+ public function getID(): string {
+ return 'availability';
+ }
+
+ public function getName(): string {
+ return $this->l->t('Availability');
+ }
+
+ public function getPriority(): int {
+ return 50;
+ }
+}