2011-03-02 01:20:16 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2011-08-23 03:40:13 +04: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-03-02 01:20:16 +03:00
|
|
|
|
2012-07-09 23:51:19 +04:00
|
|
|
OC_Util::checkSubAdminUser();
|
2011-03-02 01:20:16 +03:00
|
|
|
|
2011-08-09 17:25:18 +04:00
|
|
|
OC_App::setActiveNavigationEntry( 'core_users' );
|
2011-04-16 16:59:10 +04:00
|
|
|
|
2014-02-18 17:34:08 +04:00
|
|
|
$userManager = \OC_User::getManager();
|
2014-04-15 02:13:23 +04:00
|
|
|
$groupManager = \OC_Group::getManager();
|
2011-03-02 01:20:16 +03:00
|
|
|
|
2014-12-04 18:48:07 +03:00
|
|
|
$config = \OC::$server->getConfig();
|
|
|
|
|
2014-04-20 01:53:47 +04:00
|
|
|
$isAdmin = OC_User::isAdminUser(OC_User::getUser());
|
2014-04-17 20:13:35 +04:00
|
|
|
|
2014-04-20 01:53:47 +04:00
|
|
|
$groupsInfo = new \OC\Group\MetaData(OC_User::getUser(), $isAdmin, $groupManager);
|
2014-04-17 20:13:35 +04:00
|
|
|
$groupsInfo->setSorting($groupsInfo::SORT_USERCOUNT);
|
|
|
|
list($adminGroup, $groups) = $groupsInfo->get();
|
|
|
|
|
2013-05-16 16:53:04 +04:00
|
|
|
$recoveryAdminEnabled = OC_App::isEnabled('files_encryption') &&
|
2014-12-04 18:48:07 +03:00
|
|
|
$config->getAppValue( 'files_encryption', 'recoveryAdminEnabled', null );
|
2013-01-16 01:44:40 +04:00
|
|
|
|
2014-04-20 01:53:47 +04:00
|
|
|
if($isAdmin) {
|
2012-07-09 23:51:19 +04:00
|
|
|
$subadmins = OC_SubAdmin::getAllSubAdmins();
|
|
|
|
}else{
|
2014-07-11 09:12:04 +04: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 23:51:19 +04:00
|
|
|
$subadmins = false;
|
2011-03-02 01:20:16 +03:00
|
|
|
}
|
|
|
|
|
2012-12-21 03:48:12 +04:00
|
|
|
// load preset quotas
|
2014-12-11 17:37:56 +03:00
|
|
|
$quotaPreset=$config->getAppValue('files', 'quota_preset', '1 GB, 5 GB, 10 GB');
|
2012-12-21 03:48:12 +04:00
|
|
|
$quotaPreset=explode(',', $quotaPreset);
|
|
|
|
foreach($quotaPreset as &$preset) {
|
2013-01-14 23:30:28 +04:00
|
|
|
$preset=trim($preset);
|
2012-12-21 03:48:12 +04:00
|
|
|
}
|
|
|
|
$quotaPreset=array_diff($quotaPreset, array('default', 'none'));
|
|
|
|
|
2014-12-11 17:37:56 +03:00
|
|
|
$defaultQuota=$config->getAppValue('files', 'default_quota', 'none');
|
2013-02-15 02:29:51 +04:00
|
|
|
$defaultQuotaIsUserDefined=array_search($defaultQuota, $quotaPreset)===false
|
|
|
|
&& array_search($defaultQuota, array('none', 'default'))===false;
|
2012-12-21 03:48:12 +04:00
|
|
|
|
2014-08-29 19:27:23 +04: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-29 01:15:19 +04:00
|
|
|
$tmpl->printPage();
|