summaryrefslogtreecommitdiffstats
path: root/settings/templates/users.php
blob: bcc4d65fe43280f7dca577f31cede21b5c0d9e4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<?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">
		<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>
		<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 class="quota"></th>
		<th><input type="submit" value="<?php echo $l->t('Create')?>" /></th>
	</form>
</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">&nbsp;</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" 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>
			<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>