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