2011-03-01 22:20:16 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2015-02-26 10:37:37 +00:00
|
|
|
* Copyright (c) 2011, Robin Appelman <icewind1991@gmail.com>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or later.
|
|
|
|
* See the COPYING-README file.
|
2011-08-22 23:40:13 +00:00
|
|
|
*/
|
2015-02-26 10:37:37 +00:00
|
|
|
|
2012-07-09 19:51:19 +00:00
|
|
|
OC_Util::checkSubAdminUser();
|
2011-03-01 22:20:16 +00:00
|
|
|
|
2011-08-09 13:25:18 +00:00
|
|
|
OC_App::setActiveNavigationEntry( 'core_users' );
|
2011-04-16 12:59:10 +00:00
|
|
|
|
2014-02-18 13:34:08 +00:00
|
|
|
$userManager = \OC_User::getManager();
|
2014-04-14 22:13:23 +00:00
|
|
|
$groupManager = \OC_Group::getManager();
|
2011-03-01 22:20:16 +00:00
|
|
|
|
2014-12-04 15:48:07 +00:00
|
|
|
$config = \OC::$server->getConfig();
|
|
|
|
|
2014-04-19 21:53:47 +00:00
|
|
|
$isAdmin = OC_User::isAdminUser(OC_User::getUser());
|
2014-04-17 16:13:35 +00:00
|
|
|
|
2014-04-19 21:53:47 +00:00
|
|
|
$groupsInfo = new \OC\Group\MetaData(OC_User::getUser(), $isAdmin, $groupManager);
|
2014-04-17 16:13:35 +00:00
|
|
|
$groupsInfo->setSorting($groupsInfo::SORT_USERCOUNT);
|
|
|
|
list($adminGroup, $groups) = $groupsInfo->get();
|
|
|
|
|
2013-05-16 12:53:04 +00:00
|
|
|
$recoveryAdminEnabled = OC_App::isEnabled('files_encryption') &&
|
2014-12-04 15:48:07 +00:00
|
|
|
$config->getAppValue( 'files_encryption', 'recoveryAdminEnabled', null );
|
2013-01-15 21:44:40 +00:00
|
|
|
|
2014-04-19 21:53:47 +00:00
|
|
|
if($isAdmin) {
|
2012-07-09 19:51:19 +00:00
|
|
|
$subadmins = OC_SubAdmin::getAllSubAdmins();
|
|
|
|
}else{
|
2014-07-11 05:12:04 +00:00
|
|
|
/* Retrieve group IDs from $groups array, so we can pass that information into OC_Group::displayNamesInGroups() */
|
|
|
|
$gids = array();
|
|
|
|
foreach($groups as $group) {
|
|
|
|
if (isset($group['id'])) {
|
|
|
|
$gids[] = $group['id'];
|
|
|
|
}
|
|
|
|
}
|
2012-07-09 19:51:19 +00:00
|
|
|
$subadmins = false;
|
2011-03-01 22:20:16 +00:00
|
|
|
}
|
|
|
|
|
2012-12-20 23:48:12 +00:00
|
|
|
// load preset quotas
|
2014-12-11 14:37:56 +00:00
|
|
|
$quotaPreset=$config->getAppValue('files', 'quota_preset', '1 GB, 5 GB, 10 GB');
|
2012-12-20 23:48:12 +00:00
|
|
|
$quotaPreset=explode(',', $quotaPreset);
|
|
|
|
foreach($quotaPreset as &$preset) {
|
2013-01-14 19:30:28 +00:00
|
|
|
$preset=trim($preset);
|
2012-12-20 23:48:12 +00:00
|
|
|
}
|
|
|
|
$quotaPreset=array_diff($quotaPreset, array('default', 'none'));
|
|
|
|
|
2014-12-11 14:37:56 +00:00
|
|
|
$defaultQuota=$config->getAppValue('files', 'default_quota', 'none');
|
2013-02-14 22:29:51 +00:00
|
|
|
$defaultQuotaIsUserDefined=array_search($defaultQuota, $quotaPreset)===false
|
|
|
|
&& array_search($defaultQuota, array('none', 'default'))===false;
|
2012-12-20 23:48:12 +00:00
|
|
|
|
2014-08-29 15:27:23 +00:00
|
|
|
$tmpl = new OC_Template("settings", "users/main", "user");
|
|
|
|
$tmpl->assign('groups', $groups);
|
|
|
|
$tmpl->assign('adminGroup', $adminGroup);
|
|
|
|
$tmpl->assign('isAdmin', (int)$isAdmin);
|
|
|
|
$tmpl->assign('subadmins', $subadmins);
|
|
|
|
$tmpl->assign('numofgroups', count($groups) + count($adminGroup));
|
|
|
|
$tmpl->assign('quota_preset', $quotaPreset);
|
|
|
|
$tmpl->assign('default_quota', $defaultQuota);
|
|
|
|
$tmpl->assign('defaultQuotaIsUserDefined', $defaultQuotaIsUserDefined);
|
|
|
|
$tmpl->assign('recoveryAdminEnabled', $recoveryAdminEnabled);
|
|
|
|
$tmpl->assign('enableAvatars', \OC::$server->getConfig()->getSystemValue('enable_avatars', true));
|
2012-09-28 21:15:19 +00:00
|
|
|
$tmpl->printPage();
|