diff options
| author | Simon | 2011-03-09 14:43:40 +0100 |
|---|---|---|
| committer | Simon | 2011-03-09 14:43:40 +0100 |
| commit | 9f26be7f273a1c16fee2a369eb6c8dbcfdc83cdd (patch) | |
| tree | 937aa56a584bb1401f85c8887f5c4adeb0196c02 /application/views/scripts/bootmenu | |
| parent | htaccess (diff) | |
| download | pbs2-9f26be7f273a1c16fee2a369eb6c8dbcfdc83cdd.tar.gz pbs2-9f26be7f273a1c16fee2a369eb6c8dbcfdc83cdd.tar.xz pbs2-9f26be7f273a1c16fee2a369eb6c8dbcfdc83cdd.zip | |
Icons ins Oberlfäche hinzugefügt & Views geupdated & style geupdated & select in free clients hinzugefügt
Diffstat (limited to 'application/views/scripts/bootmenu')
| -rw-r--r-- | application/views/scripts/bootmenu/index.phtml | 22 |
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> |
