ecd9e3e07e
BaseObject moved to Friendica\Core namespace. References and function calls updated.
16 lines
259 B
PHP
16 lines
259 B
PHP
<?php
|
|
/**
|
|
* @file object/TemplateEngine.php
|
|
*/
|
|
|
|
require_once 'boot.php';
|
|
|
|
/**
|
|
* Interface for template engines
|
|
*/
|
|
interface ITemplateEngine
|
|
{
|
|
public function replace_macros($s, $v);
|
|
public function get_template_file($file, $root = '');
|
|
}
|