This repository has been archived on 2024-08-19. You can view files and clone it, but cannot push or open issues or pull requests.
core/Zotlabs/Render/TemplateEngine.php
2016-05-20 19:11:14 -07:00

13 lines
210 B
PHP
Executable File

<?php
namespace Zotlabs\Render;
/**
* @brief Interface for template engines.
*/
interface TemplateEngine {
public function replace_macros($s, $v);
public function get_markup_template($file, $root='');
}