mirror of
https://github.com/YunoHost-Apps/hubzilla_ynh.git
synced 2024-09-03 19:26:21 +02:00
11 lines
208 B
PHP
11 lines
208 B
PHP
|
<?php
|
||
|
require_once 'boot.php';
|
||
|
|
||
|
/**
|
||
|
* @brief Interface for template engines.
|
||
|
*/
|
||
|
interface ITemplateEngine {
|
||
|
public function replace_macros($s, $v);
|
||
|
public function get_markup_template($file, $root='');
|
||
|
}
|