summaryrefslogtreecommitdiffstats
path: root/application/views/scripts/bootos/index.phtml
diff options
context:
space:
mode:
Diffstat (limited to 'application/views/scripts/bootos/index.phtml')
-rw-r--r--application/views/scripts/bootos/index.phtml62
1 files changed, 0 insertions, 62 deletions
diff --git a/application/views/scripts/bootos/index.phtml b/application/views/scripts/bootos/index.phtml
deleted file mode 100644
index 6da7a16..0000000
--- a/application/views/scripts/bootos/index.phtml
+++ /dev/null
@@ -1,62 +0,0 @@
-<h1>BootOS</h1>
-<?php echo $this->formButton('createbootos', 'Create BootOS', array(
- 'onclick' => 'self.location="/bootos/createbootos"',
- 'class' => 'addbutton'))?>
-
-<table>
- <tr>
- <th>ID</th>
- <th>Title</th>
- <th>GroupID</th>
- <th>MembershipID</th>
- <th>ConfigID</th>
- <th>Init</th>
- <th>Kernel</th>
- <th>Kcl</th>
- <th>Description</th>
- <th>Changed</th>
- <th>Expires</th>
- <th>Public</th>
- <th colspan=2>Actions</th>
- </tr>
- <?php if(count($this->bootoslist)==0)
- echo "</table> There are no BootOs's to display." ?>
- <?php foreach ($this->bootoslist as $bootos): ?>
- <tr class=entry>
- <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->getMembershipID()); ?></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 class='action'><a href="<?php echo $this->url(
- array(
- 'controller' => 'bootos',
- 'action' => 'editbootos',
- 'bootosID' => $bootos->getID()
- ),
- 'default',
- true, false) ?>"><img src='/media/img/edit.png' alt='Edit BootOS'/></a></td>
- <td class='action'><a href="<?php echo $this->url(
- array(
- 'controller' => 'bootos',
- 'action' => 'deletebootos',
- 'bootosID' => $bootos->getID()
- ),
- 'default',
- true) ?>"><img src='/media/img/delete.png' alt='Delete BootOS'/></a></td>
- </tr>
- <?php endforeach; ?>
-</table>
-
-
-
-
-
-