87 lines
3.5 KiB
PHP
87 lines
3.5 KiB
PHP
<?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.
|
|
*/
|
|
|
|
$allGroups=array();
|
|
foreach($_["groups"] as $group) {
|
|
$allGroups[]=$group['name'];
|
|
}
|
|
?>
|
|
|
|
<div id="controls">
|
|
<form id="newuser">
|
|
<input id="newusername" placeholder="<?php echo $l->t('Name')?>" />
|
|
<input type="password" id="newuserpassword" placeholder="<?php echo $l->t('Password')?>" />
|
|
<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>
|
|
<input type="submit" value="<?php echo $l->t('Create')?>" />
|
|
</form>
|
|
<div class="quota">
|
|
<span><?php echo $l->t('Default Quota');?>:</span>
|
|
<select class='quota'>
|
|
<?php foreach($_['quota_preset'] as $preset):?>
|
|
<?php if($preset!='default'):?>
|
|
<option <?php if($_['default_quota']==$preset) echo 'selected="selected"';?> value='<?php echo $preset;?>'><?php echo $preset;?></option>
|
|
<?php endif;?>
|
|
<?php endforeach;?>
|
|
<?php if(array_search($_['default_quota'],$_['quota_preset'])===false):?>
|
|
<option selected="selected" value='<?php echo $_['default_quota'];?>'><?php echo $_['default_quota'];?></option>
|
|
<?php endif;?>
|
|
<option value='other'><?php echo $l->t('Other');?>...</option>
|
|
</select>
|
|
<input class='quota-other'></input>
|
|
</div>
|
|
</div>
|
|
|
|
<table data-groups="<?php echo implode(', ',$allGroups);?>">
|
|
<thead>
|
|
<tr>
|
|
<th id='headerName'><?php echo $l->t('Name')?></th>
|
|
<th id="headerPassword"><?php echo $l->t( 'Password' ); ?></th>
|
|
<th id="headerGroups"><?php echo $l->t( 'Groups' ); ?></th>
|
|
<th id="headerQuota"><?php echo $l->t( 'Quota' ); ?></th>
|
|
<th id="headerRemove"> </th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php foreach($_["users"] as $user): ?>
|
|
<tr data-uid="<?php echo $user["name"] ?>">
|
|
<td class="name"><?php echo $user["name"]; ?></td>
|
|
<td class="password">
|
|
<span>●●●●●●●</span>
|
|
<img class="svg action" src="<?php echo image_path('core','actions/rename.svg')?>" alt="set new password" title="set new password" />
|
|
</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="quota">
|
|
<select class='quota'>
|
|
<?php foreach($_['quota_preset'] as $preset):?>
|
|
<option <?php if($user['quota']==$preset) echo 'selected="selected"';?> value='<?php echo $preset;?>'><?php echo $preset;?></option>
|
|
<?php endforeach;?>
|
|
<?php if(array_search($user['quota'],$_['quota_preset'])===false):?>
|
|
<option selected="selected" value='<?php echo $user['quota'];?>'><?php echo $user['quota'];?></option>
|
|
<?php endif;?>
|
|
<option value='other'><?php echo $l->t('Other');?>...</option>
|
|
</select>
|
|
<input class='quota-other'></input>
|
|
</td>
|
|
<td class="remove">
|
|
<?php if($user['name']!=OC_User::getUser()):?>
|
|
<img alt="Delete" title="<?php echo $l->t('Delete')?>" class="svg action" src="<?php echo image_path('core','actions/delete.svg') ?>" />
|
|
<?php endif;?>
|
|
</td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|