15 lines
191 B
PHP
15 lines
191 B
PHP
|
<?php
|
||
|
/*
|
||
|
* Template Engine Wrapper
|
||
|
*/
|
||
|
|
||
|
namespace Sakura;
|
||
|
|
||
|
class Templates {
|
||
|
|
||
|
// Engine container and template options
|
||
|
public static $_ENG;
|
||
|
public static $_CFG;
|
||
|
|
||
|
}
|