1
0
Fork 0
mirror of https://github.com/friendica/friendica synced 2025-01-13 04:04:45 +00:00
friendica-github/object/TemplateEngine.php

12 lines
209 B
PHP
Raw Normal View History

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