Files
smarty/libs/sysplugins/smarty_method_getcompiledir.php
Uwe.Tews cf379474fd - change of filenames in sysplugins folder for internal spl_autoload function
- lexer/parser changed for increased compilation speed
2009-10-31 00:44:58 +00:00

28 lines
381 B
PHP

<?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;
}
?>