game/onyx2/modules/templates/smarty/sysplugins/smarty_method_getcompiledir.php

28 lines
381 B
PHP
Raw Normal View History

2020-11-15 15:12:32 +00:00
<?php
/**
* Smarty method getCompileDir
*
* Returns directory of compiled templates
*
* @package Smarty
* @subpackage SmartyMethod
* @author Uwe Tews
*/
/**
* Returns directory of compiled templates
*/
/**
* Returns directory of compiled templates
*
* @return array compiled template folder
*/
function GetCompileDir($smarty)
{
return $this->smarty->compile_dir;
}
?>