2011-08-09 13:25:18 +00:00
|
|
|
<div id="controls">
|
|
|
|
<form id="newuser">
|
2011-08-09 15:54:02 +00:00
|
|
|
<input id="newusername" placeholder="<?php echo $l->t('Name')?>"></input>
|
|
|
|
<input type="password" id="newuserpassword" placeholder="<?php echo $l->t('Password')?>"></input>
|
|
|
|
<select id="newusergroups" data-placeholder="groups" title="<?php echo $l->t('Groups')?>" multiple="multiple">
|
2011-08-09 13:25:18 +00:00
|
|
|
<?php foreach($_["groups"] as $group): ?>
|
|
|
|
<option value="<?php echo $group['name'];?>"><?php echo $group['name'];?></option>
|
|
|
|
<?php endforeach;?>
|
|
|
|
</select>
|
2011-08-09 15:54:02 +00:00
|
|
|
<input type="submit" value="<?php echo $l->t('Create')?>"></input>
|
2011-04-16 21:26:55 +00:00
|
|
|
</form>
|
2011-04-16 12:59:10 +00:00
|
|
|
</div>
|
2011-08-10 18:51:35 +00:00
|
|
|
<?php
|
|
|
|
$allGroups=array();
|
|
|
|
foreach($_["groups"] as $group){
|
|
|
|
$allGroups[]=$group['name'];
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
<table data-groups="<?php echo implode(', ',$allGroups);?>">
|
|
|
|
<?php foreach($_["users"] as $user): ?>
|
|
|
|
<tr data-uid="<?php echo $user["name"] ?>">
|
|
|
|
<td class="select"><input type="checkbox"></input></td>
|
|
|
|
<td class="name"><?php echo $user["name"]; ?></td>
|
|
|
|
<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>
|
|
|
|
<td class="remove">
|
|
|
|
<?php if($user['name']!=OC_User::getUser()):?>
|
|
|
|
<img alt="Remove" title="<?php echo $l->t('Remove')?>" class='svg' src='<?php echo image_path('core','actions/delete.svg') ?>'/>
|
|
|
|
<?php endif;?>
|
|
|
|
</td>
|
|
|
|
</tr>
|
2011-08-09 13:25:18 +00:00
|
|
|
<?php endforeach; ?>
|
2011-08-10 18:51:35 +00:00
|
|
|
</table>
|