summaryrefslogtreecommitdiffstats
path: root/application/views/scripts/config/index.phtml
diff options
context:
space:
mode:
authormichael pereira2011-03-06 14:03:34 +0100
committermichael pereira2011-03-06 14:03:34 +0100
commit7c96b41efeaa4da9be04df54e9bc19520e29a880 (patch)
treeb860371a166fa7ddd4fa1b8ea7b278a77433b1d5 /application/views/scripts/config/index.phtml
parentsql-files aufgeräumt && filter geändert (diff)
downloadpbs2-7c96b41efeaa4da9be04df54e9bc19520e29a880.tar.gz
pbs2-7c96b41efeaa4da9be04df54e9bc19520e29a880.tar.xz
pbs2-7c96b41efeaa4da9be04df54e9bc19520e29a880.zip
zfproject angepasst
Diffstat (limited to 'application/views/scripts/config/index.phtml')
-rw-r--r--application/views/scripts/config/index.phtml38
1 files changed, 12 insertions, 26 deletions
diff --git a/application/views/scripts/config/index.phtml b/application/views/scripts/config/index.phtml
index d404906..a91cb9c 100644
--- a/application/views/scripts/config/index.phtml
+++ b/application/views/scripts/config/index.phtml
@@ -4,40 +4,26 @@
<th>ID</th>
<th>Title</th>
<th>GroupID</th>
- <th>ConfigID</th>
- <th>Init</th>
- <th>Kernel</th>
- <th>Kcl</th>
- <th>Description</th>
- <th>Changed</th>
- <th>Expires</th>
- <th>Public</th>
+ <th>Shellscript</th>
</tr>
- <?php foreach ($this->bootoslist as $bootos): ?>
+ <?php foreach ($this->configlist as $config): ?>
<tr>
- <td><?php echo $this->escape($bootos->getID()); ?></td>
- <td><?php echo $this->escape($bootos->getTitle()); ?></td>
- <td><?php echo $this->escape($bootos->getGroupID()); ?></td>
- <td><?php echo $this->escape($bootos->getConfigID()); ?></td>
- <td><?php echo $this->escape($bootos->getPath_init()); ?></td>
- <td><?php echo $this->escape($bootos->getPath_kernel()); ?></td>
- <td><?php echo $this->escape($bootos->getDefaultkcl()); ?></td>
- <td><?php echo $this->escape($bootos->getDescription()); ?></td>
- <td><?php echo $this->escape(date('Y-m-d H:i:s', $bootos->getCreated())); ?></td>
- <td><?php echo $this->escape($bootos->getExpires()); ?></td>
- <td><?php echo $this->escape($bootos->getPublic()); ?></td>
+ <td><?php echo $this->escape($config->getID()); ?></td>
+ <td><?php echo $this->escape($config->getTitle()); ?></td>
+ <td><?php echo $this->escape($config->getGroupID()); ?></td>
+ <td><?php echo $this->escape($config->getShellscript()); ?></td>
<td><a href="<?php echo $this->url(
array(
- 'controller' => 'bootos',
- 'action' => 'editbootos',
- 'bootosID' => $bootos->getID()
+ 'controller' => 'config',
+ 'action' => 'editconfig',
+ 'configID' => $config->getID()
),
'default',
- true, false) ?>">Edit BootOS</a></td>
+ true, false) ?>">Edit Config</a></td>
<td><a href="<?php echo $this->url(
array(
- 'controller' => 'bootos',
- 'action' => 'deletebootos',
+ 'controller' => 'config',
+ 'action' => 'deleteconfig',
'bootosID' => $bootos->getID()
),
'default',