summaryrefslogtreecommitdiffstats
path: root/application/views/scripts/config/index.phtml
diff options
context:
space:
mode:
authorSimon2011-03-14 16:20:25 +0100
committerSimon2011-03-14 16:20:25 +0100
commit722ac9facf183998fb02e14bf035306672419aa6 (patch)
tree142486bec18e259f9678de6c7ce75cfdbe1d5bf4 /application/views/scripts/config/index.phtml
parentZweiter push um die änderungen hinzuzufügen, Trennung der Ansichten (diff)
downloadpbs2-722ac9facf183998fb02e14bf035306672419aa6.tar.gz
pbs2-722ac9facf183998fb02e14bf035306672419aa6.tar.xz
pbs2-722ac9facf183998fb02e14bf035306672419aa6.zip
die verschobenen ansichten löschen
Diffstat (limited to 'application/views/scripts/config/index.phtml')
-rw-r--r--application/views/scripts/config/index.phtml50
1 files changed, 0 insertions, 50 deletions
diff --git a/application/views/scripts/config/index.phtml b/application/views/scripts/config/index.phtml
deleted file mode 100644
index 5562b86..0000000
--- a/application/views/scripts/config/index.phtml
+++ /dev/null
@@ -1,50 +0,0 @@
-<h1>Config</h1>
-<?php echo $this->formButton('createconfig', 'Create Config', array(
- 'onclick' => 'self.location="/config/createconfig"',
- 'class' => 'addbutton'))?>
-
-<table>
- <tr>
- <th>ID</th>
- <th>Title</th>
- <th>GroupID</th>
- <th>MembershipID</th>
- <th>Shellscript</th>
- <th>Changed</th>
- <th colspan=2>Actions</th>
- </tr>
- <?php if(count($this->configlist)==0)
- echo "</table> There are no Config's to display." ?>
- <?php foreach ($this->configlist as $config): ?>
- <tr class=entry>
- <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->getMembershipID()); ?></td>
- <td><?php echo $this->escape($config->getShellscript()); ?></td>
- <td><?php echo $this->escape(date('Y-m-d H:i:s', $config->getCreated())); ?></td>
- <td class='action'><a href="<?php echo $this->url(
- array(
- 'controller' => 'config',
- 'action' => 'editconfig',
- 'configID' => $config->getID()
- ),
- 'default',
- true, false) ?>"><img src='/media/img/edit.png' alt='Edit Config'/></a></td>
- <td class='action'><a href="<?php echo $this->url(
- array(
- 'controller' => 'config',
- 'action' => 'deleteconfig',
- 'configID' => $config->getID()
- ),
- 'default',
- true) ?>"><img src='/media/img/delete.png' alt='Delete Config'/></a></td>
- </tr>
- <?php endforeach; ?>
-</table>
-
-
-
-
-
-