summaryrefslogtreecommitdiffstats
path: root/application/views/scripts/bootmenu/index.phtml
blob: 3f29b9edb551b5687fb504d77873bd85d3aa7f84 (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
<h1>BootMenu</h1>
<table border=1>
  <tr>
    <th>ID</th>
    <th>Title</th>
    <th>GroupID</th>
    <th>MembershipID</th>
    <th>Changed</th>
  </tr>
  <?php foreach ($this->bootmenulist as $bootmenu): ?>
  <tr>
    <td><?php echo $this->escape($bootmenu->getID()); ?></td>
    <td><?php echo $this->escape($bootmenu->getTitle()); ?></td>
    <td><?php echo $this->escape($bootmenu->getGroupID()); ?></td>
    <td><?php echo $this->escape($bootmenu->getMembershipID()); ?></td>
    <td><?php echo $this->escape(date('Y-m-d H:i:s', $bootmenu->getCreated())); ?></td>
    <td><a href="<?php echo $this->url(
					array(
						'controller' => 'bootmenu',
						'action'     => 'editbootmenu',
						'bootmenuID'   =>  $bootmenu->getID()
					),
					'default',
					true, false) ?>">Edit BootMenu</a></td>
	<td><a href="<?php echo $this->url(
					array(
						'controller' => 'bootmenu',
						'action'     => 'deletebootmenu',
						'bootmenuID'   =>  $bootmenu->getID()
					),
					'default',
					true) ?>">Delete BootMenu</a></td>
  </tr>
  <?php endforeach; ?>
</table>
<br/>
<?php echo $this->formButton('createbootmenu', 'Create BootMenu', array(
							'onclick' => 'self.location="/bootmenu/createbootmenu"'))?>