summaryrefslogtreecommitdiff
path: root/src/views/pages/users/index.html.php
blob: 2650c5a4c0c3397e4429d1872b5985838838a256 (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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<?php global $VARS;
$t = $VARS['template'];
$attribs = $VARS['attribs'];
$users = $VARS['users'];

$t->header('Users');

$t->paragraph($t->link($t->url('users.csv'), "Download this as a spreadsheet.", true));

$t->openTag('form', array('action'=>$t->url('users/index'),
                          'method'=>'post'));

$t->tag('input', array('type'=>'submit',
                       'value'=>'Save/Update'));

$t->openTag('table', array('class'=>'sortable', 'id'=>'bar'));

$t->openTag('thead');
$t->openTag('tr');
foreach ($attribs as $attrib) {
	$t->tag('th', array(), $attrib['name']);
}
$t->tag('th', array(), '-');
$t->closeTag('tr');
$t->closeTag('thead');

$t->openTag('tfoot');
$t->openTag('tr');
foreach ($attribs as $attrib) {
	$t->tag('th', array(), $attrib['name']);
}
$t->tag('th', array(), '-');
$t->closeTag('tr');
$t->closeTag('tfoot');

$t->openTag('tbody');

foreach ($users as $user) {
	$t->openTag('tr');
	
	foreach ($attribs as $attrib) {
		$t->openTag('td');

		$props = $user[$attrib['key']];
		
		$value    = $props['value'];
		$editable = $props['editable'];
		$post_key = $props['post_key'];
		$bool = is_bool($value);
		
		$arr = array('name'=>$post_key);
		if (!$editable) {
			$arr['readonly'] = 'readonly';
			if ($bool) $arr['disabled'] = $disabled;
		}
		if ($bool) {
			$t->tag('input', array('type'=>'hidden', 'name'=>$post_key, 'value'=>'false'));
			if ($value==true) {
				$arr['checked'] = 'checked';
			}
			$arr['value'] = 'true';
			$arr['type'] = 'checkbox';
		} else {
			$t->tag('span', array('class'=>'cell_width'), $value);
			$arr['value'] = $value;
			$arr['type'] = 'text';
		}
		
		$t->tag('input', array('name'=>'_old['.$arr['name'].']',
		                       'value'=>$arr['value'],
		                       'type'=>'hidden'));
		$t->tag('input', $arr);
		$t->closeTag('td');
	}
	
	$t->openTag('td');
	$t->link($t->url('users/'.$user['auth_name']['value']), 'More');
	$t->closeTag('td');
	
	$t->closeTag('tr');
}

$t->closeTag('tbody');
$t->closeTag('table');

$t->tag('input', array('type'=>'submit',
                       'value'=>'Save/Update'));
$t->closeTag('form');

$t->footer();