2011-08-23 03:40:13 +04:00
|
|
|
<?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.
|
|
|
|
*/
|
|
|
|
|
2011-08-10 22:51:35 +04:00
|
|
|
$allGroups=array();
|
2011-08-11 22:59:17 +04:00
|
|
|
foreach($_["groups"] as $group) {
|
2011-08-10 22:51:35 +04:00
|
|
|
$allGroups[]=$group['name'];
|
|
|
|
}
|
|
|
|
?>
|
2011-08-11 22:59:17 +04:00
|
|
|
|
2011-08-10 22:51:35 +04:00
|
|
|
<table data-groups="<?php echo implode(', ',$allGroups);?>">
|
2011-08-20 07:07:58 +04:00
|
|
|
<thead id="controls">
|
|
|
|
<tr><form id="newuser">
|
|
|
|
<th class="name"><input id="newusername" placeholder="<?php echo $l->t('Name')?>" /></th>
|
|
|
|
<th class="password"><input type="password" id="newuserpassword" placeholder="<?php echo $l->t('Password')?>" /></th>
|
2011-08-11 22:59:17 +04:00
|
|
|
<th class="groups"><select id="newusergroups" data-placeholder="groups" title="<?php echo $l->t('Groups')?>" multiple="multiple">
|
|
|
|
<?php foreach($_["groups"] as $group): ?>
|
|
|
|
<option value="<?php echo $group['name'];?>"><?php echo $group['name'];?></option>
|
|
|
|
<?php endforeach;?>
|
|
|
|
</select></th>
|
2011-08-20 07:07:58 +04:00
|
|
|
<th class="quota"></th>
|
|
|
|
<th><input type="submit" value="<?php echo $l->t('Create')?>" /></th>
|
2011-08-11 22:59:17 +04:00
|
|
|
</form></tr>
|
2011-08-20 07:07:58 +04:00
|
|
|
</thead>
|
|
|
|
<tbody>
|
2011-08-10 22:51:35 +04:00
|
|
|
<?php foreach($_["users"] as $user): ?>
|
|
|
|
<tr data-uid="<?php echo $user["name"] ?>">
|
|
|
|
<td class="name"><?php echo $user["name"]; ?></td>
|
2011-08-11 13:26:57 +04:00
|
|
|
<td class="password">
|
|
|
|
<span>●●●●●●●</span>
|
2011-08-14 16:55:43 +04:00
|
|
|
<img class="svg action" src="<?php echo image_path('core','actions/rename.svg')?>" alt="set new password" title="set new password" />
|
2011-08-11 13:26:57 +04:00
|
|
|
</td>
|
2011-08-10 22:51:35 +04:00
|
|
|
<td class="groups">
|
|
|
|
<select data-username="<?php echo $user['name'] ;?>" data-user-groups="<?php echo $user['groups'] ;?>" data-placeholder="groups" title="<?php echo $l->t('Groups')?>" multiple="multiple">
|
|
|
|
<?php foreach($_["groups"] as $group): ?>
|
|
|
|
<option value="<?php echo $group['name'];?>"><?php echo $group['name'];?></option>
|
|
|
|
<?php endforeach;?>
|
|
|
|
</select>
|
|
|
|
</td>
|
2011-08-15 23:06:29 +04:00
|
|
|
<td class="quota" data-quota="<?php echo $user['quota']?>">
|
|
|
|
<span><?php echo ($user['quota']>0)?$user['quota']:'None';?></span>
|
|
|
|
<img class="svg action" src="<?php echo image_path('core','actions/rename.svg')?>" alt="set new password" title="set quota" />
|
|
|
|
</td>
|
2011-08-10 22:51:35 +04:00
|
|
|
<td class="remove">
|
|
|
|
<?php if($user['name']!=OC_User::getUser()):?>
|
2011-08-14 16:55:43 +04:00
|
|
|
<img alt="Delete" title="<?php echo $l->t('Delete')?>" class="svg action" src="<?php echo image_path('core','actions/delete.svg') ?>" />
|
2011-08-10 22:51:35 +04:00
|
|
|
<?php endif;?>
|
|
|
|
</td>
|
|
|
|
</tr>
|
2011-08-09 17:25:18 +04:00
|
|
|
<?php endforeach; ?>
|
2011-08-11 22:59:17 +04:00
|
|
|
</tbody>
|
2011-08-10 22:51:35 +04:00
|
|
|
</table>
|