blob: 10b2eadb6bced535321f1ce8eb169417dc125358 (
plain) (
tree)
|
|
<?php
/**
* @package util
*/
require_once('boot.php');
require_once('vendor/smarty/smarty/libs/Smarty.class.php');
$folders = array_merge(array('view/tpl/'), glob('view/theme/*/tpl/*', GLOB_ONLYDIR));
$s = new Smarty();
$s->setTemplateDir($folders);
$s->setCompileDir(TEMPLATE_BUILD_PATH . '/compiled/');
$s->setConfigDir(TEMPLATE_BUILD_PATH . '/config/');
$s->setCacheDir(TEMPLATE_BUILD_PATH . '/cache/');
$s->left_delimiter = '{{';
$s->right_delimiter = '}}';
$s->compileAllTemplates('.tpl', true);
|