Skip to content
Snippets Groups Projects
Unverified Commit 28e1a9da authored by Bjoern Schiessle's avatar Bjoern Schiessle
Browse files

allow admin to disable groups on personal page

parent c092b334
No related branches found
No related tags found
No related merge requests found
...@@ -1541,4 +1541,9 @@ $CONFIG = array( ...@@ -1541,4 +1541,9 @@ $CONFIG = array(
*/ */
'gs.federation' => 'internal', 'gs.federation' => 'internal',
/**
* show group membership on the personal page
*/
'settings.personal.showGroupMembership' => true
); );
...@@ -160,6 +160,7 @@ if ($storageInfo['quota'] === \OCP\Files\FileInfo::SPACE_UNLIMITED) { ...@@ -160,6 +160,7 @@ if ($storageInfo['quota'] === \OCP\Files\FileInfo::SPACE_UNLIMITED) {
$uid = $user->getUID(); $uid = $user->getUID();
$userData = $accountManager->getUser($user); $userData = $accountManager->getUser($user);
$tmpl->assign('showGroupMembership', $config->getSystemValue('settings.personal.showGroupMembership', true));
$tmpl->assign('total_space', $totalSpace); $tmpl->assign('total_space', $totalSpace);
$tmpl->assign('usage_relative', $storageInfo['relative']); $tmpl->assign('usage_relative', $storageInfo['relative']);
$tmpl->assign('quota', $storageInfo['quota']); $tmpl->assign('quota', $storageInfo['quota']);
......
...@@ -239,6 +239,7 @@ ...@@ -239,6 +239,7 @@
</div> </div>
</div> </div>
<?php if ($_['showGroupMembership'] === true): ?>
<div id="groups" class="section"> <div id="groups" class="section">
<h2><?php p($l->t('Groups')); ?></h2> <h2><?php p($l->t('Groups')); ?></h2>
<p><?php p($l->t('You are member of the following groups:')); ?></p> <p><?php p($l->t('You are member of the following groups:')); ?></p>
...@@ -246,6 +247,7 @@ ...@@ -246,6 +247,7 @@
<?php p(implode(', ', $_['groups'])); ?> <?php p(implode(', ', $_['groups'])); ?>
</p> </p>
</div> </div>
<?php endif; ?>
<?php <?php
if($_['passwordChangeSupported']) { if($_['passwordChangeSupported']) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment