aboutsummaryrefslogtreecommitdiffstats
path: root/include/ITemplateEngine.php
blob: 7bd559a635a1ce503a4e53a94396af621cafce42 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
<?php
require_once 'boot.php';

/**
 * @brief Interface for template engines.
 */
interface ITemplateEngine {
	public function replace_macros($s, $v);
	public function get_markup_template($file, $root='');
}