streams/include/ITemplateEngine.php

11 lines
208 B
PHP
Raw Normal View History

<?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='');
}