1
0
Fork 0
mirror of https://github.com/friendica/friendica synced 2025-01-12 13:24:43 +00:00
friendica-github/object/TemplateEngine.php
Fabrixxm ddf1caf0fd template engine rework
- use smarty3 as default engine
- new pluggable template engine system
2013-04-23 03:27:52 -04:00

11 lines
209 B
PHP

<?php
require_once 'boot.php';
/**
* Interface for template engines
*/
interface ITemplateEngine {
public function replace_macros($s,$v);
public function get_template_file($file, $root='');
}