From 28e1a9da6cd3bce3cc843727d54094db4969dd7b Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Tue, 6 Jun 2017 09:57:30 +0200 Subject: [PATCH] allow admin to disable groups on personal page Signed-off-by: Bjoern Schiessle --- config/config.sample.php | 5 +++++ settings/personal.php | 1 + settings/templates/personal.php | 2 ++ 3 files changed, 8 insertions(+) diff --git a/config/config.sample.php b/config/config.sample.php index 27499825c6..3ea898406d 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -1541,4 +1541,9 @@ $CONFIG = array( */ 'gs.federation' => 'internal', +/** + * show group membership on the personal page + */ +'settings.personal.showGroupMembership' => true + ); diff --git a/settings/personal.php b/settings/personal.php index 5a6ff76208..458d1e8d42 100644 --- a/settings/personal.php +++ b/settings/personal.php @@ -160,6 +160,7 @@ if ($storageInfo['quota'] === \OCP\Files\FileInfo::SPACE_UNLIMITED) { $uid = $user->getUID(); $userData = $accountManager->getUser($user); +$tmpl->assign('showGroupMembership', $config->getSystemValue('settings.personal.showGroupMembership', true)); $tmpl->assign('total_space', $totalSpace); $tmpl->assign('usage_relative', $storageInfo['relative']); $tmpl->assign('quota', $storageInfo['quota']); diff --git a/settings/templates/personal.php b/settings/templates/personal.php index 12f291bd80..a658ac34e8 100644 --- a/settings/templates/personal.php +++ b/settings/templates/personal.php @@ -239,6 +239,7 @@ +

t('Groups')); ?>

t('You are member of the following groups:')); ?>

@@ -246,6 +247,7 @@

+