From dcf3693b3ebcb75436da7df5d2171891357703aa Mon Sep 17 00:00:00 2001 From: Bharat Mediratta Date: Tue, 25 Nov 2008 02:17:53 +0000 Subject: Add theme debugging. Activate it in the [info] tab in the scaffolding, then browse around your Gallery3 to see where you can add visible elements via modules. --- core/controllers/welcome.php | 4 ++-- core/libraries/Theme.php | 24 +++++++++++++----------- core/views/welcome.html.php | 11 +++++++++-- 3 files changed, 24 insertions(+), 15 deletions(-) (limited to 'core') diff --git a/core/controllers/welcome.php b/core/controllers/welcome.php index 9f42c1c4..e4473f06 100644 --- a/core/controllers/welcome.php +++ b/core/controllers/welcome.php @@ -252,8 +252,8 @@ class Welcome_Controller extends Template_Controller { url::redirect("welcome"); } - public function profiler() { - Session::instance()->set("use_profiler", $this->input->get("use_profiler", false)); + public function session($key) { + Session::instance()->set($key, $this->input->get("value", false)); $this->auto_render = false; url::redirect("welcome"); } diff --git a/core/libraries/Theme.php b/core/libraries/Theme.php index df657ad1..68c48587 100644 --- a/core/libraries/Theme.php +++ b/core/libraries/Theme.php @@ -62,7 +62,6 @@ class Theme_Core { */ public function __call($function, $args) { switch ($function) { - case "admin": case "head": case "page_top": case "page_bottom": @@ -80,23 +79,26 @@ class Theme_Core { case "photo_top": case "photo_blocks": case "photo_bottom": - if (empty($this->block_helpers[$function])) { - foreach (module::get_list() as $module) { - $helper_class = "{$module->name}_block"; - if (method_exists($helper_class, $function)) { - $this->block_helpers[$function][] = $helper_class; - } - } - } + // @todo: restrict access to this option + $debug = Session::instance()->get("debug", false); $blocks = array(); - if (!empty($this->block_helpers[$function])) { - foreach ($this->block_helpers[$function] as $helper_class) { + foreach (module::get_list() as $module) { + $helper_class = "{$module->name}_block"; + if (method_exists($helper_class, $function)) { $blocks[] = call_user_func_array( array($helper_class, $function), array_merge(array($this), $args)); } } + if ($debug) { + if ($function != "head") { + array_unshift( + $blocks, "
" . + "
$function
"); + $blocks[] = "
"; + } + } return implode("\n", $blocks); default: diff --git a/core/views/welcome.html.php b/core/views/welcome.html.php index c9277efd..7b34927f 100644 --- a/core/views/welcome.html.php +++ b/core/views/welcome.html.php @@ -239,9 +239,16 @@
  • Profiling: get("use_profiler", false)): ?> - on + on - off + off + +
  • +
  • Debug: + get("debug", false)): ?> + on + + off
  • -- cgit v1.2.3