toggling of user edit panel works now.

added groups to the admin_user view, so you will eventually be able to edit users, groups and memberships on one admin page.
This commit is contained in:
Jakob Hilden
2009-01-22 08:37:58 +00:00
parent ddb995eaf6
commit 1cc5d36657
3 changed files with 75 additions and 16 deletions

View File

@@ -22,6 +22,7 @@ class Admin_Users_Controller extends Controller {
$view = new Admin_View("admin.html");
$view->content = new View("admin_users.html");
$view->content->users = ORM::factory("user")->orderby("name")->find_all();
$view->content->groups = ORM::factory("group")->orderby("name")->find_all();
print $view;
}