diff options
| author | Sebastian Schmelzer | 2012-01-11 15:22:32 +0100 |
|---|---|---|
| committer | Sebastian Schmelzer | 2012-01-11 15:22:32 +0100 |
| commit | 83767be80c29e3d3ca99f4a7d2eaab97f8256d1b (patch) | |
| tree | 354ee1ba3343291cd389aea69582d677fb7b8a26 /application/modules/dev/views/scripts/bootiso/index.phtml | |
| parent | fix stylecode output (diff) | |
| download | pbs2-83767be80c29e3d3ca99f4a7d2eaab97f8256d1b.tar.gz pbs2-83767be80c29e3d3ca99f4a7d2eaab97f8256d1b.tar.xz pbs2-83767be80c29e3d3ca99f4a7d2eaab97f8256d1b.zip | |
remove unused stuff
Diffstat (limited to 'application/modules/dev/views/scripts/bootiso/index.phtml')
| -rw-r--r-- | application/modules/dev/views/scripts/bootiso/index.phtml | 66 |
1 files changed, 0 insertions, 66 deletions
diff --git a/application/modules/dev/views/scripts/bootiso/index.phtml b/application/modules/dev/views/scripts/bootiso/index.phtml deleted file mode 100644 index ada36d6..0000000 --- a/application/modules/dev/views/scripts/bootiso/index.phtml +++ /dev/null @@ -1,66 +0,0 @@ -<h1>BootMedien</h1> -<?php echo $this->formButton('createbootiso', 'Create BootISO', array( - 'onclick' => 'self.location="/dev/bootiso/createbootiso"', - 'class' => 'addbutton'))?> -<table> - <tr> - <th>ID</th> - <th>Title</th> - <th>GroupID</th> - <th>MembershipID</th> - <th>PrebootID</th> - <th>Serialnumber</th> - <th>Created</th> - <th>Expires</th> - <th>Public</th> - <th colspan=3>Actions</th> - </tr> - <?php if(count($this->bootisolist)==0) - 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->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> - <td><?php echo $this->escape($bootiso->getPublic()); ?></td> - <td class='action'><a href="<?php echo $this->url( - array( - 'module' => 'dev', - 'controller' => 'bootiso', - 'action' => 'downloadbootiso', - 'prebootID' => $bootiso->getprebootID(), - 'bootisoID' => $bootiso->getID() - ), - '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() - ), - 'default', - true, false) ?>"><img src='/media/img/edit.png' alt='Edit BootISO' /></a></td> - <td class='action'><a href="<?php echo $this->url( - array( - 'module' => 'dev', - 'controller' => 'bootiso', - 'action' => 'deletebootiso', - 'bootisoID' => $bootiso->getID() - ), - 'default', - true) ?>"><img src='/media/img/delete.png' alt='Delete BootISO'/></a></td> - </tr> - <?php endforeach; ?> -</table> - - - - - |
