allow admin to disable groups on personal page

Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
This commit is contained in:
Bjoern Schiessle 2017-06-06 09:57:30 +02:00
parent 7ff205cf94
commit de809b4ac7
No known key found for this signature in database
GPG Key ID: 2378A753E2BF04F6
3 changed files with 8 additions and 0 deletions

View File

@ -1541,4 +1541,9 @@ $CONFIG = array(
*/
'gs.federation' => 'internal',
/**
* show group membership on the personal page
*/
'settings.personal.showGroupMembership' => true
);

View File

@ -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']);

View File

@ -239,6 +239,7 @@
</div>
</div>
<?php if ($_['showGroupMembership'] === true): ?>
<div id="groups" class="section">
<h2><?php p($l->t('Groups')); ?></h2>
<p><?php p($l->t('You are member of the following groups:')); ?></p>
@ -246,6 +247,7 @@
<?php p(implode(', ', $_['groups'])); ?>
</p>
</div>
<?php endif; ?>
<?php
if($_['passwordChangeSupported']) {