nextcloud/settings/users.php

65 lines
2.1 KiB
PHP
Raw Normal View History

<?php
/**
* 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.
*/
require_once('../lib/base.php');
2012-07-09 23:51:19 +04:00
OC_Util::checkSubAdminUser();
2011-04-16 16:59:10 +04:00
// We have some javascript foo!
OC_Util::addScript( 'settings', 'users' );
2011-10-02 17:56:51 +04:00
OC_Util::addScript( 'core', 'multiselect' );
OC_Util::addStyle( 'settings', 'settings' );
2011-08-09 17:25:18 +04:00
OC_App::setActiveNavigationEntry( 'core_users' );
2011-04-16 16:59:10 +04:00
$users = array();
$groups = array();
2012-07-09 23:51:19 +04:00
$isadmin = OC_Group::inGroup(OC_User::getUser(),'admin')?true:false;
if($isadmin){
2012-07-15 18:31:28 +04:00
$accessiblegroups = OC_Group::getGroups();
2012-07-09 23:51:19 +04:00
$accessibleusers = OC_User::getUsers();
$subadmins = OC_SubAdmin::getAllSubAdmins();
}else{
2012-07-15 18:31:28 +04:00
$accessiblegroups = OC_SubAdmin::getSubAdminsGroups(OC_User::getUser());
$accessibleusers = OC_Group::usersInGroups($accessiblegroups);
2012-07-09 23:51:19 +04:00
$subadmins = false;
}
2012-07-09 23:51:19 +04:00
foreach($accessibleusers as $i){
2012-07-15 18:31:28 +04:00
$users[] = array( "name" => $i, "groups" => join( ", ", /*array_intersect(*/OC_Group::getUserGroups($i)/*, OC_SubAdmin::getSubAdminsGroups(OC_User::getUser()))*/),'quota'=>OC_Preferences::getValue($i,'files','quota','default'),'subadmin'=>implode(', ',OC_SubAdmin::getSubAdminsGroups($i)));
2012-07-09 23:51:19 +04:00
}
2012-07-15 18:31:28 +04:00
foreach( $accessiblegroups as $i ){
// Do some more work here soon
$groups[] = array( "name" => $i );
}
2012-02-24 17:38:40 +04:00
$quotaPreset=OC_Appconfig::getValue('files','quota_preset','default,none,1 GB, 5 GB, 10 GB');
$quotaPreset=explode(',',$quotaPreset);
foreach($quotaPreset as &$preset){
$preset=trim($preset);
}
2012-02-25 00:19:23 +04:00
$defaultQuota=OC_Appconfig::getValue('files','default_quota','none');
$shareNotice = '';
if (\OC_App::isEnabled( "files_sharing" ) ) {
$shareNotice = 'Note: users may only share to groups that they belong to, and their members';
}
$tmpl = new OC_Template( "settings", "users", "user" );
$tmpl->assign( "users", $users );
$tmpl->assign( "groups", $groups );
2012-07-20 17:20:48 +04:00
$tmpl->assign( 'isadmin', (int) $isadmin);
2012-07-09 23:51:19 +04:00
$tmpl->assign( 'subadmins', $subadmins);
2012-07-15 18:31:28 +04:00
$tmpl->assign( 'numofgroups', count($accessiblegroups));
2012-02-24 17:38:40 +04:00
$tmpl->assign( 'quota_preset', $quotaPreset);
2012-02-25 00:19:23 +04:00
$tmpl->assign( 'default_quota', $defaultQuota);
$tmpl->assign( 'share_notice', $shareNotice);
$tmpl->printPage();