summaryrefslogtreecommitdiffstats
path: root/application/views/scripts/bootmenu/index.phtml
diff options
context:
space:
mode:
Diffstat (limited to 'application/views/scripts/bootmenu/index.phtml')
-rw-r--r--application/views/scripts/bootmenu/index.phtml48
1 files changed, 18 insertions, 30 deletions
diff --git a/application/views/scripts/bootmenu/index.phtml b/application/views/scripts/bootmenu/index.phtml
index d09bb34..3f29b9e 100644
--- a/application/views/scripts/bootmenu/index.phtml
+++ b/application/views/scripts/bootmenu/index.phtml
@@ -1,53 +1,41 @@
-<h1>BootOS</h1>
+<h1>BootMenu</h1>
<table border=1>
<tr>
<th>ID</th>
<th>Title</th>
<th>GroupID</th>
- <th>ConfigID</th>
- <th>Init</th>
- <th>Kernel</th>
- <th>Kcl</th>
- <th>Description</th>
+ <th>MembershipID</th>
<th>Changed</th>
- <th>Expires</th>
- <th>Public</th>
</tr>
- <?php foreach ($this->bootoslist as $bootos): ?>
+ <?php foreach ($this->bootmenulist as $bootmenu): ?>
<tr>
- <td><?php echo $this->escape($bootos->getID()); ?></td>
- <td><?php echo $this->escape($bootos->getTitle()); ?></td>
- <td><?php echo $this->escape($bootos->getGroupID()); ?></td>
- <td><?php echo $this->escape($bootos->getConfigID()); ?></td>
- <td><?php echo $this->escape($bootos->getPath_init()); ?></td>
- <td><?php echo $this->escape($bootos->getPath_kernel()); ?></td>
- <td><?php echo $this->escape($bootos->getDefaultkcl()); ?></td>
- <td><?php echo $this->escape($bootos->getDescription()); ?></td>
- <td><?php echo $this->escape(date('Y-m-d H:i:s', $bootos->getCreated())); ?></td>
- <td><?php echo $this->escape($bootos->getExpires()); ?></td>
- <td><?php echo $this->escape($bootos->getPublic()); ?></td>
+ <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' => 'bootos',
- 'action' => 'editbootos',
- 'bootosID' => $bootos->getID()
+ 'controller' => 'bootmenu',
+ 'action' => 'editbootmenu',
+ 'bootmenuID' => $bootmenu->getID()
),
'default',
- true, false) ?>">Edit BootOS</a></td>
+ true, false) ?>">Edit BootMenu</a></td>
<td><a href="<?php echo $this->url(
array(
- 'controller' => 'bootos',
- 'action' => 'deletebootos',
- 'bootosID' => $bootos->getID()
+ 'controller' => 'bootmenu',
+ 'action' => 'deletebootmenu',
+ 'bootmenuID' => $bootmenu->getID()
),
'default',
- true) ?>">Delete BootOS</a></td>
+ true) ?>">Delete BootMenu</a></td>
</tr>
<?php endforeach; ?>
</table>
<br/>
-<?php echo $this->formButton('createbootos', 'Create BootOS', array(
- 'onclick' => 'self.location="/bootos/createbootos"'))?>
+<?php echo $this->formButton('createbootmenu', 'Create BootMenu', array(
+ 'onclick' => 'self.location="/bootmenu/createbootmenu"'))?>