summaryrefslogtreecommitdiffstats
path: root/application/modules/user/views/scripts/group/showall.phtml
blob: e26e91ea2ab605da481c8b5635369ad781bc2c6c (plain) (blame)
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
<h1>Groups</h1>
<?php echo $this->formButton('addgroup', 'Add Group', array(
							'onclick' => 'self.location="/user/group/add"',
							'class' => 'addbutton'))
?>
<table>
	<tr>
		<th>Title</th>
		<th colspan=3>Actions</th>
	</tr>
	<?php
	$count = 0;
	foreach($this->groupList as $group) {
		?>
	<tr
	<?php if($group->getID() == $this->userIDsNamespace['groupID']) echo 'class="selectedEntry"'; else echo 'class="entry"'; ?>>
		<td><?php echo $group->getTitle(); ?></td>
		<td class='action'><a
			href="<?php if($group->getID() == $this->userIDsNamespace['groupID']) echo $this->url(
					array(
						'module'	=> 'user',
						'controller' => 'group',
						'action'     => 'show'
					),
					'default',
					true); else echo $this->url(
					array(
						'module'	=> 'user',
						'controller' => 'group',
						'action'     => 'show',
						'groupID'   =>  $group->getID()
					),
					'default',
					true); ?>"> <img src='/media/img/show.png' alt='Show Group' /></a></td>
		<td class='action'><a
			href="<?php if($group->getID() == $this->userIDsNamespace['groupID']) echo $this->url(
					array(
						'module'	=> 'user',
						'controller' => 'group',
						'action'     => 'edit'
					),
					'default',
					true); else echo $this->url(
					array(
						'module'	=> 'user',
						'controller' => 'group',
						'action'     => 'edit',
						'groupID'   =>  $group->getID()
					),
					'default',
					true); ?>"> <img src='/media/img/edit.png' alt='Edit Group' /></a></td>
		<td class='action'><a
			href="<?php if($group->getID() == $this->userIDsNamespace['groupID']) echo $this->url(
					array(
						'module'	=> 'user',
						'controller' => 'group',
						'action'     => 'delete'
					),
					'default',
					true); else echo $this->url(
					array(
						'module'	=> 'user',
						'controller' => 'group',
						'action'     => 'delete',
						'groupID'   =>  $group->getID()
					),
					'default',
					true); ?>"> <img src='/media/img/delete.png' alt='Delete Group' /></a>
		</td>
	</tr>
	<?php
	$count++;
	}
	?>
</table>
	<?php echo $this->formButton('linkgroups', 'Link Groups', array(
							'onclick' => 'self.location="/user/group/link"',
							'class' => 'addbutton'))
	?>