mirror of https://github.com/friendica/friendica
parent
97f063e4be
commit
104a1d7fd3
@ -1,15 +0,0 @@
|
||||
<?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 = '');
|
||||
}
|
@ -0,0 +1,15 @@
|
||||
<?php
|
||||
/**
|
||||
* @file src/Render/ITemplateEngine.php
|
||||
*/
|
||||
|
||||
namespace Friendica\Render;
|
||||
|
||||
/**
|
||||
* Interface for template engines
|
||||
*/
|
||||
interface ITemplateEngine
|
||||
{
|
||||
public function replaceMacros($s, $v);
|
||||
public function getTemplateFile($file, $root = '');
|
||||
}
|
Loading…
Reference in New Issue