diff options
author | friendica <info@friendica.com> | 2013-11-28 19:17:20 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-11-28 19:17:45 -0800 |
commit | d1ab865ccf8a9200236e310c93ad56b8a7f93aad (patch) | |
tree | a3389b16a800ed7f513b020ba59e7f6f116e137d /include | |
parent | 94c293f2c6c8ff7d7a1a0f45ab9ab2ecfaa16372 (diff) | |
download | volse-hubzilla-d1ab865ccf8a9200236e310c93ad56b8a7f93aad.tar.gz volse-hubzilla-d1ab865ccf8a9200236e310c93ad56b8a7f93aad.tar.bz2 volse-hubzilla-d1ab865ccf8a9200236e310c93ad56b8a7f93aad.zip |
make the template processor (e.g. replace_macros) pluggable
Diffstat (limited to 'include')
-rwxr-xr-x | include/text.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/text.php b/include/text.php index 54626a772..3d15a5c6b 100755 --- a/include/text.php +++ b/include/text.php @@ -15,8 +15,11 @@ require_once("include/friendica_smarty.php"); function replace_macros($s,$r) { $a = get_app(); + $arr = array('template' => $s, 'params' => $r); + call_hooks('replace_macros', $arr); + $t = $a->template_engine(); - $output = $t->replace_macros($s,$r); + $output = $t->replace_macros($arr['template'],$arr['params']); return $output; } |