Exemple #1
0
 public function index()
 {
     $view = new Admin_View("admin.html");
     $view->content = new View("admin_dashboard.html");
     $view->content->blocks = block_manager::get_html("dashboard_center");
     $view->sidebar = "<div id=\"g-admin-dashboard-sidebar\">" . block_manager::get_html("dashboard_sidebar") . "</div>";
     print $view;
 }
Exemple #2
0
 public function index()
 {
     $view = new Admin_View("admin.html");
     $view->page_title = t("Dashboard");
     $view->content = new View("admin_dashboard.html");
     $view->content->blocks = block_manager::get_html("dashboard_center");
     $view->sidebar = "<div id=\"g-admin-dashboard-sidebar\">" . block_manager::get_html("dashboard_sidebar") . "</div>";
     $view->content->obsolete_modules_message = module::get_obsolete_modules_message();
     print $view;
 }
Exemple #3
0
 /**
  * Print out the sidebar.
  */
 public function sidebar_blocks()
 {
     $sidebar = block_manager::get_html("site.sidebar", $this);
     if (empty($sidebar) && identity::active_user()->admin) {
         $sidebar = new View("no_sidebar.html");
     }
     return $sidebar;
 }