diff options
| author | Bharat Mediratta <bharat@menalto.com> | 2009-01-28 22:42:50 +0000 |
|---|---|---|
| committer | Bharat Mediratta <bharat@menalto.com> | 2009-01-28 22:42:50 +0000 |
| commit | 6bfadc14edec84119dc6d72b62b7fa762cbc5771 (patch) | |
| tree | b40a4d996f5b8ed97edf533e2b5b4e2b7abff710 /modules/user/views/admin_groups.html.php | |
| parent | 25b8008304d44d9aac6162a03c157bd052fc08c2 (diff) | |
Fully implement the user administration backend with drag/drop to add
users to groups.
Diffstat (limited to 'modules/user/views/admin_groups.html.php')
| -rw-r--r-- | modules/user/views/admin_groups.html.php | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/modules/user/views/admin_groups.html.php b/modules/user/views/admin_groups.html.php deleted file mode 100644 index c1b7dbde..00000000 --- a/modules/user/views/admin_groups.html.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php defined("SYSPATH") or die("No direct script access.") ?> -<div class="gBlock"> - <h2><?= t("Group Administration") ?></h2> - <div class="gBlockContent"> - <p><?= t("These are the groups in your system") ?></p> - </div> - <ul> - <? foreach ($groups as $i => $group): ?> - <li class="<?= ($i % 2 == 0) ? "gEvenRow" : "gOddRow" ?>"> - <?= $group->name ?> - <a href="groups/edit_form/<?= $group->id ?>" class="gDialogLink" - title="<?= t("Edit group") ?>"><?= t("edit") ?></a> - <? if (!$group->special): ?> - <a href="groups/delete_form/<?= $group->id ?>" class="gDialogLink" - title="<?= t("Do you really want to delete %group_name", array("group_name" => $group->name)) ?>"> - <?= t("delete") ?></a> - <? endif ?> - </li> - <? endforeach ?> - <li><a href="groups/add_form" class="gDialogLink" - title="<?= t("Add group") ?>"><?= t("Add group") ?></a></li> - </ul> -</div> - - |
