summaryrefslogtreecommitdiffstats
path: root/application/views/scripts/bootmenu
diff options
context:
space:
mode:
Diffstat (limited to 'application/views/scripts/bootmenu')
-rw-r--r--application/views/scripts/bootmenu/index.phtml22
1 files changed, 11 insertions, 11 deletions
diff --git a/application/views/scripts/bootmenu/index.phtml b/application/views/scripts/bootmenu/index.phtml
index 019a799..6fb55e4 100644
--- a/application/views/scripts/bootmenu/index.phtml
+++ b/application/views/scripts/bootmenu/index.phtml
@@ -22,23 +22,23 @@
<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(
+ <td class='action'><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(
+ true, false) ?>"><img src='/media/img/edit.png' alt='Edit Bootmenu'/></a></td>
+ <td class='action'><a href="<?php echo $this->url(
array(
'controller' => 'bootmenu',
'action' => 'deletebootmenu',
'bootmenuID' => $bootmenu->getID()
),
'default',
- true) ?>">Delete Bootmenu</a></td>
- <td><a href="<?php echo $this->url(
+ true) ?>"><img src='/media/img/delete.png' alt='Delete Bootmenu'/></a></td>
+ <td class='action'><a href="<?php echo $this->url(
array(
'controller' => 'bootmenu',
'action' => 'addbootmenuentry',
@@ -46,12 +46,12 @@
'maxorder' => count($this->bootmenuentrylist[$bootmenu->getID()])
),
'default',
- true) ?>">Add Entry</a></td>
+ true) ?>"><img src='/media/img/add.png' alt='Add Entry'/></a></td>
</tr>
<?php if(count($this->bootmenuentrylist[$bootmenu->getID()]) > 0):?>
<tr class=detail>
- <td></td>
+ <td class=arrowtop>↳</td>
<td colspan=7>
<table>
<tr>
@@ -78,7 +78,7 @@
<td><?php echo $this->escape($bootmenuentry->getkcl()); ?></td>
<td><?php echo "[".$this->escape($bootmenuentry->getConfigID()."] ". $config->getTitle()); ?></td>
<td><?php echo $this->escape($bootmenuentry->getOrder() + 1); ?></td>
- <td><a href="<?php echo $this->url(
+ <td class='action'><a href="<?php echo $this->url(
array(
'controller' => 'bootmenu',
'action' => 'editbootmenuentry',
@@ -88,15 +88,15 @@
'oldorder' => $bootmenuentry->getOrder()
),
'default',
- true, false) ?>">Edit Entry</a></td>
- <td><a href="<?php echo $this->url(
+ true, false) ?>"><img src='/media/img/edit.png' alt='Edit Entry'/></a></td>
+ <td class='action'><a href="<?php echo $this->url(
array(
'controller' => 'bootmenu',
'action' => 'removebootmenuentry',
'bootmenuentryID' => $bootmenuentry->getID()
),
'default',
- true) ?>">Remove Entry</a></td>
+ true) ?>"><img src='/media/img/delete.png' alt='Remove Entry'/></a></td>
</tr>
<?php endforeach; ?>
</table>