mirror of
https://framagit.org/hubzilla/core.git
synced 2026-06-21 00:52:33 -04:00
12 lines
211 B
PHP
Executable File
12 lines
211 B
PHP
Executable File
<?php
|
|
require_once 'boot.php';
|
|
|
|
|
|
/**
|
|
* Interface for template engines
|
|
*/
|
|
interface ITemplateEngine {
|
|
public function replace_macros($s,$v);
|
|
public function get_markup_template($file, $root='');
|
|
}
|