blob: 53c1845f4ea1c751e476f107b4fa7f44b08d3cd4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
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='');
}
|