blob: 7bd559a635a1ce503a4e53a94396af621cafce42 (
plain) (
tree)
|
|
<?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='');
}
|