diff options
| author | michael pereira | 2011-03-09 20:54:27 +0100 |
|---|---|---|
| committer | michael pereira | 2011-03-09 20:54:27 +0100 |
| commit | fbff9df0469ee998389fa263d8638cc3bf3618b5 (patch) | |
| tree | 04adfd6a021e574055469ce6d0469988cb4684bd /application/views/scripts/bootmenu/index.phtml | |
| parent | KCL und BootMenuFilter (diff) | |
| parent | FilterController Evaluate funktioniert (diff) | |
| download | pbs2-fbff9df0469ee998389fa263d8638cc3bf3618b5.tar.gz pbs2-fbff9df0469ee998389fa263d8638cc3bf3618b5.tar.xz pbs2-fbff9df0469ee998389fa263d8638cc3bf3618b5.zip | |
Merge branch 'master' of openslx.org:lsfks/master-teamprojekt/pbs2
Diffstat (limited to 'application/views/scripts/bootmenu/index.phtml')
| -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> |
