";
}
}
public static function thumb_bottom($theme, $child) {
if ($child->type == "photo" && access::can("edit", $child)) {
return "
";
}
}
public static function admin_head($theme) {
if (Session::instance()->get("debug")) {
return "";
}
}
public static function page_bottom($theme) {
if (Session::instance()->get("profiler", false)) {
$profiler = new Profiler();
$profiler->render();
}
}
public static function admin_page_bottom($theme) {
if (Session::instance()->get("profiler", false)) {
$profiler = new Profiler();
$profiler->render();
}
}
}