2011-03-01 17:20:16 -05:00
|
|
|
<?php
|
|
|
|
|
/**
|
2011-08-22 19: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-01 17:20:16 -05:00
|
|
|
|
|
|
|
|
require_once('../lib/base.php');
|
2011-09-18 15:31:56 -04:00
|
|
|
OC_Util::checkAdminUser();
|
2011-03-01 17:20:16 -05:00
|
|
|
|
2011-04-16 08:59:10 -04:00
|
|
|
// We have some javascript foo!
|
2011-08-12 22:04:48 -04:00
|
|
|
OC_Util::addScript( 'settings', 'users' );
|
2011-10-02 09:56:51 -04:00
|
|
|
OC_Util::addScript( 'core', 'multiselect' );
|
2011-08-12 22:04:48 -04:00
|
|
|
OC_Util::addStyle( 'settings', 'settings' );
|
2011-08-09 09:25:18 -04:00
|
|
|
OC_App::setActiveNavigationEntry( 'core_users' );
|
2011-04-16 08:59:10 -04:00
|
|
|
|
2011-03-01 17:20:16 -05:00
|
|
|
$users = array();
|
|
|
|
|
$groups = array();
|
|
|
|
|
|
2011-07-29 15:36:03 -04:00
|
|
|
foreach( OC_User::getUsers() as $i ){
|
2011-08-15 15:06:29 -04:00
|
|
|
$users[] = array( "name" => $i, "groups" => join( ", ", OC_Group::getUserGroups( $i ) ),'quota'=>OC_Helper::humanFileSize(OC_Preferences::getValue($i,'files','quota',0)));
|
2011-03-01 17:20:16 -05:00
|
|
|
}
|
|
|
|
|
|
2011-07-29 15:36:03 -04:00
|
|
|
foreach( OC_Group::getGroups() as $i ){
|
2011-03-01 17:20:16 -05:00
|
|
|
// Do some more work here soon
|
2011-04-18 04:00:45 -04:00
|
|
|
$groups[] = array( "name" => $i );
|
2011-03-01 17:20:16 -05:00
|
|
|
}
|
|
|
|
|
|
2011-08-12 22:04:48 -04:00
|
|
|
$tmpl = new OC_Template( "settings", "users", "user" );
|
2011-03-01 17:20:16 -05:00
|
|
|
$tmpl->assign( "users", $users );
|
|
|
|
|
$tmpl->assign( "groups", $groups );
|
|
|
|
|
$tmpl->printPage();
|
|
|
|
|
|
|
|
|
|
?>
|
|
|
|
|
|