'; } public static function page_bottom($theme) { if (Session::instance()->get("profiler", false)) { $profiler = new Profiler(); $profiler->render(); } if (access::can("edit", $theme->item()->id)) { return new View("in_place_edit.html"); } } public static function navigation_bottom($theme) { $user = Session::instance()->get('user', null); if ($user && $user->admin) { return "
  • " . _("ADMIN") . "
  • "; } } }