BaseObject moved to src/Core
BaseObject moved to Friendica\Core namespace. References and function calls updated.
This commit is contained in:
@@ -1,11 +1,15 @@
|
||||
<?php
|
||||
require_once 'boot.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='');
|
||||
interface ITemplateEngine
|
||||
{
|
||||
public function replace_macros($s, $v);
|
||||
public function get_template_file($file, $root = '');
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user