From 36e0f8a4b1d0234159dfd01cc3812aa3e65ee7f6 Mon Sep 17 00:00:00 2001 From: rub Date: Wed, 13 Jun 2007 05:17:22 +0000 Subject: Enhancement for the plugin development: o Add footer block o Add useful triggers on template object Merge branch-1_7 2034:2035 into BSF git-svn-id: http://piwigo.org/svn/trunk@2036 68402e56-0260-453c-a942-63ccdbb3a9ee --- include/template.php | 7 ++++++- template/yoga/footer.tpl | 3 +++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/include/template.php b/include/template.php index d5e296edd..9b4b20fa6 100644 --- a/include/template.php +++ b/include/template.php @@ -115,6 +115,8 @@ class Template { */ function set_filenames($filename_array) { + $filename_array = trigger_event('loc_tpl_set_filenames', $filename_array, array(&$this)); + if (!is_array($filename_array)) { return false; @@ -153,6 +155,7 @@ class Template { // actually compile the template now. if (!isset($this->compiled_code[$handle]) || empty($this->compiled_code[$handle])) { + trigger_action('loc_before_tpl_pparse', $handle, array(&$this)); // Actually compile the code now. $this->compiled_code[$handle] = $this->compile($this->uncompiled_code[$handle]); } @@ -176,6 +179,7 @@ class Template { // actually compile the template now. if (!isset($this->compiled_code[$handle]) || empty($this->compiled_code[$handle])) { + trigger_action('loc_before_tpl_parse', $handle, array(&$this)); // Actually compile the code now. $this->compiled_code[$handle] = $this->compile($this->uncompiled_code[$handle], true, '_str'); } @@ -215,6 +219,7 @@ class Template { die("Template->assign_var_from_handle(): Couldn't load template file for handle $handle"); } + trigger_action('loc_before_tpl_assign_var_from_handle', $handle, array(&$this)); // Compile it, with the "no echo statements" option on. $_str = ""; $code = $this->compile($this->uncompiled_code[$handle], true, '_str'); @@ -394,7 +399,7 @@ class Template { die("Template->loadfile(): File $filename for handle $handle is empty"); } - $this->uncompiled_code[$handle] = $str; + $this->uncompiled_code[$handle] = trigger_event('tpl_load_file', $str, $handle, array(&$this)); return true; } diff --git a/template/yoga/footer.tpl b/template/yoga/footer.tpl index d0f76f8ac..0a808428d 100644 --- a/template/yoga/footer.tpl +++ b/template/yoga/footer.tpl @@ -18,6 +18,9 @@ + +{footer_element.CONTENT} + -- cgit v1.2.3