aboutsummaryrefslogtreecommitdiffstats
path: root/settings/templates
diff options
context:
space:
mode:
authorBjoern Schiessle <schiesbn@woody.(none)>2012-06-12 11:18:34 +0200
committerBjoern Schiessle <schiesbn@woody.(none)>2012-06-12 11:18:34 +0200
commit1b6dd6628a690cdbc36855ef5b1ff3926023001b (patch)
treec2763ee3b75e7d4261ce13f5b4e92264fd5c3e32 /settings/templates
parent5e37a103349006c1b29a2f8585a416baab7ee187 (diff)
downloadnextcloud-server-1b6dd6628a690cdbc36855ef5b1ff3926023001b.tar.gz
nextcloud-server-1b6dd6628a690cdbc36855ef5b1ff3926023001b.zip
applied patch provided by bug #966 to fix broken user specific quota settings
Diffstat (limited to 'settings/templates')
-rw-r--r--settings/templates/users.php110
1 files changed, 69 insertions, 41 deletions
diff --git a/settings/templates/users.php b/settings/templates/users.php
index 1951f17a0b7..ea3fe777ffe 100644
--- a/settings/templates/users.php
+++ b/settings/templates/users.php
@@ -12,29 +12,43 @@ foreach($_["groups"] as $group) {
<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')?>" />
+ <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):?>
+ <div class="quota-select-wrapper">
+ <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>
+ <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>
+ <?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>
</div>
@@ -49,38 +63,52 @@ foreach($_["groups"] as $group) {
</tr>
</thead>
<tbody>
- <?php foreach($_["users"] as $user): ?>
+ <?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 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">
+ <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>
+ <option value="<?php echo $group['name'];?>">
+ <?php echo $group['name'];?>
+ </option>
<?php endforeach;?>
- </select>
+ </select>
</td>
<td class="quota">
- <select class='quota-user'>
- <?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>
+ <div class="quota-select-wrapper">
+ <select class='quota-user'>
+ <?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>
+ </div>
</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 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; ?>
+ <?php endforeach; ?>
</tbody>
</table>