2013-03-27 10:37:59 -04:00
|
|
|
<?php
|
2017-11-16 13:05:41 -05:00
|
|
|
/**
|
|
|
|
* @file object/TemplateEngine.php
|
|
|
|
*/
|
2013-03-27 10:37:59 -04:00
|
|
|
|
2017-11-16 13:05:41 -05:00
|
|
|
require_once 'boot.php';
|
2013-03-27 10:37:59 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Interface for template engines
|
|
|
|
*/
|
2017-11-16 13:05:41 -05:00
|
|
|
interface ITemplateEngine
|
|
|
|
{
|
|
|
|
public function replace_macros($s, $v);
|
|
|
|
public function get_template_file($file, $root = '');
|
2013-03-27 10:37:59 -04:00
|
|
|
}
|