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