summaryrefslogtreecommitdiffstats
path: root/application/modules/user/views/scripts/preboot/index.phtml
diff options
context:
space:
mode:
authormichael pereira2011-04-01 16:51:07 +0200
committermichael pereira2011-04-01 16:51:07 +0200
commit0576a9832661cfbfb29e1d59b72f092740388fa7 (patch)
tree2cbd79177900de8b8ede455156c2e13a20c94697 /application/modules/user/views/scripts/preboot/index.phtml
parentBootmenu & BootOs Controller (diff)
parentPagination in ettlichen Controllern + aufgeräumt (diff)
downloadpbs2-0576a9832661cfbfb29e1d59b72f092740388fa7.tar.gz
pbs2-0576a9832661cfbfb29e1d59b72f092740388fa7.tar.xz
pbs2-0576a9832661cfbfb29e1d59b72f092740388fa7.zip
merge
Diffstat (limited to 'application/modules/user/views/scripts/preboot/index.phtml')
-rw-r--r--application/modules/user/views/scripts/preboot/index.phtml14
1 files changed, 9 insertions, 5 deletions
diff --git a/application/modules/user/views/scripts/preboot/index.phtml b/application/modules/user/views/scripts/preboot/index.phtml
index 21ff310..9e73de1 100644
--- a/application/modules/user/views/scripts/preboot/index.phtml
+++ b/application/modules/user/views/scripts/preboot/index.phtml
@@ -5,7 +5,7 @@
'class' => 'updatebutton',
))?>
<?php echo $this->formButton('createpreboot', 'Create PreBoot', array(
- 'onclick' => 'self.location="/user/preboot/createpreboot"',
+ 'onclick' => 'self.location="/user/preboot/createpreboot/page/'.$this->page.'"',
'class' => 'addbutton'))?>
<table>
<tr>
@@ -31,7 +31,8 @@
'module' => 'user',
'controller' => 'preboot',
'action' => 'updatepreboot',
- 'prebootID' => $preboot->getID()
+ 'prebootID' => $preboot->getID(),
+ 'page' => $this->page
),
'default',
true, false) ?>"><img src='/media/img/update.png' alt='Updates available' /></a></td>
@@ -43,7 +44,8 @@
'module' => 'user',
'controller' => 'preboot',
'action' => 'editpreboot',
- 'prebootID' => $preboot->getID()
+ 'prebootID' => $preboot->getID(),
+ 'page' => $this->page
),
'default',
true, false) ?>"><img src='/media/img/edit.png' alt='Edit Preboot' /></a></td>
@@ -52,10 +54,12 @@
'module' => 'user',
'controller' => 'preboot',
'action' => 'deletepreboot',
- 'prebootID' => $preboot->getID()
+ 'prebootID' => $preboot->getID(),
+ 'page' => $this->page
),
'default',
true) ?>"><img src='/media/img/delete.png' alt='Delete Preboot'/></a></td>
</tr>
<?php endforeach; ?>
-</table> \ No newline at end of file
+</table>
+<?php echo $this->pagination; ?>