summaryrefslogtreecommitdiffstats
path: root/application/modules/dev/views/scripts/bootiso
diff options
context:
space:
mode:
authormichael pereira2011-03-21 10:49:32 +0100
committermichael pereira2011-03-21 10:49:32 +0100
commit19d1af16ad8a2fdaa5aa608693b81fa9502e162d (patch)
treeb5b00a6fb91fffad157b85bbf209ac7675a86801 /application/modules/dev/views/scripts/bootiso
parentFilter funktioniert nun, FBGui IndexController angepasst (diff)
downloadpbs2-19d1af16ad8a2fdaa5aa608693b81fa9502e162d.tar.gz
pbs2-19d1af16ad8a2fdaa5aa608693b81fa9502e162d.tar.xz
pbs2-19d1af16ad8a2fdaa5aa608693b81fa9502e162d.zip
Preboot Controller eingerichtet
Diffstat (limited to 'application/modules/dev/views/scripts/bootiso')
-rw-r--r--application/modules/dev/views/scripts/bootiso/index.phtml21
1 files changed, 14 insertions, 7 deletions
diff --git a/application/modules/dev/views/scripts/bootiso/index.phtml b/application/modules/dev/views/scripts/bootiso/index.phtml
index 453f316..cb06be6 100644
--- a/application/modules/dev/views/scripts/bootiso/index.phtml
+++ b/application/modules/dev/views/scripts/bootiso/index.phtml
@@ -1,4 +1,4 @@
-<h1>BootISO</h1>
+<h1>BootMedien</h1>
<?php echo $this->formButton('createbootiso', 'Create BootISO', array(
'onclick' => 'self.location="/dev/bootiso/createbootiso"',
'class' => 'addbutton'))?>
@@ -8,22 +8,22 @@
<th>Title</th>
<th>GroupID</th>
<th>MembershipID</th>
- <th>FbGui Path</th>
+ <th>PrebootID</th>
<th>Serialnumber</th>
<th>Created</th>
<th>Expires</th>
<th>Public</th>
- <th colspan=2>Actions</th>
+ <th colspan=3>Actions</th>
</tr>
<?php if(count($this->bootisolist)==0)
- echo "</table> There are no BootISO's entries for the Bootmenuto display." ?>
+ echo "</table> There are no BootISO's entries to display." ?>
<?php foreach ($this->bootisolist as $bootiso): ?>
<tr class=entry>
<td><?php echo $this->escape($bootiso->getID()); ?></td>
<td><?php echo $this->escape($bootiso->getTitle()); ?></td>
<td><?php echo $this->escape($bootiso->getGroupID()); ?></td>
<td><?php echo $this->escape($bootiso->getMembershipID()); ?></td>
- <td><?php echo $this->escape($bootiso->getPath_fbgui()); ?></td>
+ <td><?php echo "[" . $this->escape($bootiso->getPrebootID()) . "] " . $this->prebootlist[$bootiso->getID()]; ?></td>
<td><?php echo $this->escape($bootiso->getSerialnumber()); ?></td>
<td><?php echo $this->escape(date('Y-m-d H:i:s', $bootiso->getCreated())); ?></td>
<td><?php echo $this->escape($bootiso->getExpires()); ?></td>
@@ -32,6 +32,15 @@
array(
'module' => 'dev',
'controller' => 'bootiso',
+ 'action' => 'downloadbootiso',
+ 'prebootID' => $bootiso->getprebootID()
+ ),
+ 'default',
+ true, false) ?>"><img src='/media/img/download.png' alt='Download BootMedium' /></a></td>
+ <td class='action'><a href="<?php echo $this->url(
+ array(
+ 'module' => 'dev',
+ 'controller' => 'bootiso',
'action' => 'editbootiso',
'bootisoID' => $bootiso->getID()
),
@@ -51,8 +60,6 @@
</table>
-
-