diff options
author | fabrixxm <fabrix.xm@gmail.com> | 2013-05-08 03:51:38 -0400 |
---|---|---|
committer | fabrixxm <fabrix.xm@gmail.com> | 2013-05-08 03:51:38 -0400 |
commit | 31a21ac24cd5cbe19e40ab3838fcc179d812da13 (patch) | |
tree | d556822e261cb2b8ff10452a7c5b07b0c2c793c7 /include/ITemplateEngine.php | |
parent | 51c27579ba79d32c26052c0d1f1218a16315234b (diff) | |
download | volse-hubzilla-31a21ac24cd5cbe19e40ab3838fcc179d812da13.tar.gz volse-hubzilla-31a21ac24cd5cbe19e40ab3838fcc179d812da13.tar.bz2 volse-hubzilla-31a21ac24cd5cbe19e40ab3838fcc179d812da13.zip |
use smarty3 as default template engine. add pluggable template system
Diffstat (limited to 'include/ITemplateEngine.php')
-rwxr-xr-x | include/ITemplateEngine.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/ITemplateEngine.php b/include/ITemplateEngine.php new file mode 100755 index 000000000..53c1845f4 --- /dev/null +++ b/include/ITemplateEngine.php @@ -0,0 +1,11 @@ +<?php
+require_once 'boot.php';
+
+
+/**
+ * Interface for template engines
+ */
+interface ITemplateEngine {
+ public function replace_macros($s,$v);
+ public function get_markup_template($file, $root='');
+}
|