Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorszaimen <szaimen@e.mail.de>2022-03-07 13:07:25 +0300
committerszaimen <szaimen@e.mail.de>2022-08-30 16:46:09 +0300
commit955b6bb82ea38fa15a4659238b98bfc76cfc4420 (patch)
tree40d3af8ef6a1f3648e56ac452c9119fa885f7d91 /apps
parentf56ecf92426026c913497bea9f7ca99e8d3ac631 (diff)
add a way to open the admin settings overview directly
Signed-off-by: szaimen <szaimen@e.mail.de>
Diffstat (limited to 'apps')
-rw-r--r--apps/settings/lib/Controller/CommonSettingsTrait.php7
1 files changed, 6 insertions, 1 deletions
diff --git a/apps/settings/lib/Controller/CommonSettingsTrait.php b/apps/settings/lib/Controller/CommonSettingsTrait.php
index 2eb7b4ccf99..4a15b0c7a32 100644
--- a/apps/settings/lib/Controller/CommonSettingsTrait.php
+++ b/apps/settings/lib/Controller/CommonSettingsTrait.php
@@ -134,7 +134,12 @@ trait CommonSettingsTrait {
}
private function getIndexResponse($type, $section) {
- $this->navigationManager->setActiveEntry('settings');
+ if ($type === 'personal') {
+ $this->navigationManager->setActiveEntry('settings');
+ } elseif ($type === 'admin') {
+ $this->navigationManager->setActiveEntry('admin_settings');
+ }
+
$templateParams = [];
$templateParams = array_merge($templateParams, $this->getNavigationParameters($type, $section));
$templateParams = array_merge($templateParams, $this->getSettings($section));