mirror of
https://framagit.org/hubzilla/core.git
synced 2026-06-21 00:52:33 -04:00
13 lines
210 B
PHP
13 lines
210 B
PHP
<?php
|
|
|
|
namespace Zotlabs\Render;
|
|
|
|
/**
|
|
* @brief Interface for template engines.
|
|
*/
|
|
|
|
interface TemplateEngine {
|
|
public function replace_macros($s, $v);
|
|
public function get_markup_template($file, $root='');
|
|
}
|