summaryrefslogtreecommitdiffstats
path: root/application/modules/dev/views/scripts/group/index.phtml
diff options
context:
space:
mode:
Diffstat (limited to 'application/modules/dev/views/scripts/group/index.phtml')
-rw-r--r--application/modules/dev/views/scripts/group/index.phtml57
1 files changed, 0 insertions, 57 deletions
diff --git a/application/modules/dev/views/scripts/group/index.phtml b/application/modules/dev/views/scripts/group/index.phtml
deleted file mode 100644
index a3d1269..0000000
--- a/application/modules/dev/views/scripts/group/index.phtml
+++ /dev/null
@@ -1,57 +0,0 @@
-<h1>Groups</h1>
-<?php echo $this->formButton('addgroup', 'Add Group', array(
- 'onclick' => 'self.location="/dev/group/add"',
- 'class' => 'addbutton'))?>
-<table>
- <tr>
- <th>Title</th>
- <th colspan=3>Actions</th>
- </tr>
- <?php
- $count = 0;
- foreach($this->groupList as $group) {
- ?>
- <tr class="entry">
- <td><?php echo $group->getTitle(); ?></td>
- <td class='action'><a
- href="<?php echo $this->url(
- array(
- 'module' => 'dev',
- 'controller' => 'group',
- 'action' => 'show',
- 'groupID' => $group->getID()
- ),
- 'default',
- true) ?>"> <img src='/media/img/show.png' alt='Show Group' /></a></td>
- <td class='action'><a
- href="<?php echo $this->url(
- array(
- 'module' => 'dev',
- 'controller' => 'group',
- 'action' => 'edit',
- 'groupID' => $group->getID()
- ),
- 'default',
- true) ?>"> <img src='/media/img/edit.png' alt='Edit Group' /></a></td>
- <td class='action'><a
- href="<?php echo $this->url(
- array(
- 'module' => 'dev',
- 'controller' => 'group',
- 'action' => 'delete',
- 'groupID' => $group->getID()
- ),
- 'default',
- true) ?>"> <img src='/media/img/delete.png' alt='Delete Group' /></a>
- </td>
- </tr>
- <?php
- $count++;
- }
- ?>
-</table>
-<div>
-<?php echo $this->formButton('linkgroups', 'Link Groups', array(
- 'onclick' => 'self.location="/dev/group/link"',
- 'class' => 'addbutton'))?>
-</div>