2011-03-01 22:20:16 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2015-02-23 10:28:53 +00:00
|
|
|
* @author Arthur Schiwon <blizzz@owncloud.com>
|
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
|
|
|
* @author Björn Schießle <schiessle@owncloud.com>
|
|
|
|
* @author Clark Tomlinson <fallen013@gmail.com>
|
|
|
|
* @author Daniel Molkentin <daniel@molkentin.de>
|
|
|
|
* @author Georg Ehrke <georg@owncloud.com>
|
|
|
|
* @author Jakob Sack <mail@jakobsack.de>
|
|
|
|
* @author Lukas Reschke <lukas@owncloud.com>
|
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
|
|
* @author Robin Appelman <icewind@owncloud.com>
|
|
|
|
* @author Stephan Peijnik <speijnik@anexia-it.com>
|
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2015, ownCloud, Inc.
|
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*
|
2011-08-22 23:40:13 +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();
|