summaryrefslogtreecommitdiffstats
path: root/settings/templates/users.php
diff options
context:
space:
mode:
Diffstat (limited to 'settings/templates/users.php')
-rw-r--r--settings/templates/users.php42
1 files changed, 42 insertions, 0 deletions
diff --git a/settings/templates/users.php b/settings/templates/users.php
new file mode 100644
index 00000000000..0009c85fa38
--- /dev/null
+++ b/settings/templates/users.php
@@ -0,0 +1,42 @@
+<?php
+$allGroups=array();
+foreach($_["groups"] as $group) {
+ $allGroups[]=$group['name'];
+}
+?>
+
+<table data-groups="<?php echo implode(', ',$allGroups);?>">
+ <tbody>
+ <tr id="controls"><form id="newuser">
+ <th class="name"><input id="newusername" placeholder="<?php echo $l->t('Name')?>"></input></th>
+ <th class="password"><input type="password" id="newuserpassword" placeholder="<?php echo $l->t('Password')?>"></input></th>
+ <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>
+ <th><input type="submit" value="<?php echo $l->t('Create')?>"></input></th>
+ </form></tr>
+ <?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" src="<?php echo image_path('core','actions/rename')?>"/>
+ </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') ?>" />
+ <?php endif;?>
+ </td>
+ </tr>
+ <?php endforeach; ?>
+ </tbody>
+</table>