Only the admin dashboard has a sidebar now.

admin.html.php looks for $sidebar and renders the page appropriately
if one exists.  But only admin_dashboard has one currently.
This commit is contained in:
Bharat Mediratta
2009-01-12 04:04:55 +00:00
parent 5fdcdc0e68
commit 11fb04cdde
4 changed files with 21 additions and 14 deletions

View File

@@ -20,7 +20,8 @@
class Admin_Dashboard_Controller extends Admin_Controller {
public function index() {
$view = new Admin_View("admin.html");
$view->content = $view->admin_dashboard_blocks();
$view->content = new View("admin_dashboard_main.html");
$view->sidebar = new View("admin_dashboard_sidebar.html");
print $view;
}
}