aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorrub <rub@piwigo.org>2007-06-13 05:14:54 +0000
committerrub <rub@piwigo.org>2007-06-13 05:14:54 +0000
commit58dc3aa595dd7630836646e7d52220a973d43e93 (patch)
tree2b2a3bb7e25b0231df006422424c981a56bfa207 /include
parent106c39d7bd042c78f4863e271af6da941a6bd082 (diff)
Enhancement for the plugin development:
o Add footer block o Add useful triggers on template object git-svn-id: http://piwigo.org/svn/branches/branch-1_7@2035 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include')
-rw-r--r--include/template.php7
1 files changed, 6 insertions, 1 deletions
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;
}