summaryrefslogtreecommitdiffstats
path: root/apps/settings
diff options
context:
space:
mode:
authorChristoph Wurst <ChristophWurst@users.noreply.github.com>2022-10-24 10:13:37 +0200
committerGitHub <noreply@github.com>2022-10-24 10:13:37 +0200
commit232c760de4c414679d78f64763c3d9ed367a0906 (patch)
treeb566945cfbcf9a9ece2972e33ecd413fa91f8808 /apps/settings
parent999f89ff666a7f8e70ab16620273b7b0941d2e2a (diff)
parent0799b8988b26ff702979f85b62e671aafd73783d (diff)
downloadnextcloud-server-232c760de4c414679d78f64763c3d9ed367a0906.tar.gz
nextcloud-server-232c760de4c414679d78f64763c3d9ed367a0906.zip
Merge pull request #34626 from nextcloud/enhancement/rename-personal-groupware-settings-section-availability
Rename personal Groupware settings section to "Availability"
Diffstat (limited to 'apps/settings')
-rw-r--r--apps/settings/appinfo/info.xml2
-rw-r--r--apps/settings/composer/composer/autoload_classmap.php2
-rw-r--r--apps/settings/composer/composer/autoload_static.php2
-rw-r--r--apps/settings/lib/Sections/Personal/Availability.php (renamed from apps/settings/lib/Sections/Personal/Groupware.php)8
4 files changed, 7 insertions, 7 deletions
diff --git a/apps/settings/appinfo/info.xml b/apps/settings/appinfo/info.xml
index 37083481ada..9cb489ff0f3 100644
--- a/apps/settings/appinfo/info.xml
+++ b/apps/settings/appinfo/info.xml
@@ -37,7 +37,7 @@
<personal>OCA\Settings\Settings\Personal\Security\Password</personal>
<personal>OCA\Settings\Settings\Personal\Security\TwoFactor</personal>
<personal>OCA\Settings\Settings\Personal\Security\WebAuthn</personal>
- <personal-section>OCA\Settings\Sections\Personal\Groupware</personal-section>
+ <personal-section>OCA\Settings\Sections\Personal\Availability</personal-section>
<personal-section>OCA\Settings\Sections\Personal\PersonalInfo</personal-section>
<personal-section>OCA\Settings\Sections\Personal\Security</personal-section>
<personal-section>OCA\Settings\Sections\Personal\SyncClients</personal-section>
diff --git a/apps/settings/composer/composer/autoload_classmap.php b/apps/settings/composer/composer/autoload_classmap.php
index baac88ea8c7..6ebb4e1e067 100644
--- a/apps/settings/composer/composer/autoload_classmap.php
+++ b/apps/settings/composer/composer/autoload_classmap.php
@@ -48,7 +48,7 @@ return array(
'OCA\\Settings\\Sections\\Admin\\Security' => $baseDir . '/../lib/Sections/Admin/Security.php',
'OCA\\Settings\\Sections\\Admin\\Server' => $baseDir . '/../lib/Sections/Admin/Server.php',
'OCA\\Settings\\Sections\\Admin\\Sharing' => $baseDir . '/../lib/Sections/Admin/Sharing.php',
- 'OCA\\Settings\\Sections\\Personal\\Groupware' => $baseDir . '/../lib/Sections/Personal/Groupware.php',
+ 'OCA\\Settings\\Sections\\Personal\\Availability' => $baseDir . '/../lib/Sections/Personal/Availability.php',
'OCA\\Settings\\Sections\\Personal\\PersonalInfo' => $baseDir . '/../lib/Sections/Personal/PersonalInfo.php',
'OCA\\Settings\\Sections\\Personal\\Security' => $baseDir . '/../lib/Sections/Personal/Security.php',
'OCA\\Settings\\Sections\\Personal\\SyncClients' => $baseDir . '/../lib/Sections/Personal/SyncClients.php',
diff --git a/apps/settings/composer/composer/autoload_static.php b/apps/settings/composer/composer/autoload_static.php
index b8aec66c25b..19858569961 100644
--- a/apps/settings/composer/composer/autoload_static.php
+++ b/apps/settings/composer/composer/autoload_static.php
@@ -63,7 +63,7 @@ class ComposerStaticInitSettings
'OCA\\Settings\\Sections\\Admin\\Security' => __DIR__ . '/..' . '/../lib/Sections/Admin/Security.php',
'OCA\\Settings\\Sections\\Admin\\Server' => __DIR__ . '/..' . '/../lib/Sections/Admin/Server.php',
'OCA\\Settings\\Sections\\Admin\\Sharing' => __DIR__ . '/..' . '/../lib/Sections/Admin/Sharing.php',
- 'OCA\\Settings\\Sections\\Personal\\Groupware' => __DIR__ . '/..' . '/../lib/Sections/Personal/Groupware.php',
+ 'OCA\\Settings\\Sections\\Personal\\Availability' => __DIR__ . '/..' . '/../lib/Sections/Personal/Availability.php',
'OCA\\Settings\\Sections\\Personal\\PersonalInfo' => __DIR__ . '/..' . '/../lib/Sections/Personal/PersonalInfo.php',
'OCA\\Settings\\Sections\\Personal\\Security' => __DIR__ . '/..' . '/../lib/Sections/Personal/Security.php',
'OCA\\Settings\\Sections\\Personal\\SyncClients' => __DIR__ . '/..' . '/../lib/Sections/Personal/SyncClients.php',
diff --git a/apps/settings/lib/Sections/Personal/Groupware.php b/apps/settings/lib/Sections/Personal/Availability.php
index 4c64e06cb3a..c23b2c0a822 100644
--- a/apps/settings/lib/Sections/Personal/Groupware.php
+++ b/apps/settings/lib/Sections/Personal/Availability.php
@@ -27,7 +27,7 @@ use OCP\IL10N;
use OCP\IURLGenerator;
use OCP\Settings\IIconSection;
-class Groupware implements IIconSection {
+class Availability implements IIconSection {
/** @var IL10N */
private $l;
@@ -41,15 +41,15 @@ class Groupware implements IIconSection {
}
public function getIcon(): string {
- return $this->urlGenerator->imagePath('core', 'places/contacts.svg');
+ return $this->urlGenerator->imagePath('dav', 'schedule.svg');
}
public function getID(): string {
- return 'groupware';
+ return 'availability';
}
public function getName(): string {
- return $this->l->t('Groupware');
+ return $this->l->t('Availability');
}
public function getPriority(): int {