aboutsummaryrefslogtreecommitdiffstats
path: root/include/ITemplateEngine.php
diff options
context:
space:
mode:
Diffstat (limited to 'include/ITemplateEngine.php')
-rwxr-xr-xinclude/ITemplateEngine.php11
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='');
+}