2009-03-30 17:05:37 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
2009-11-03 20:38:38 +00:00
|
|
|
* Smarty method GetCompileDir
|
2009-03-30 17:05:37 +00:00
|
|
|
*
|
|
|
|
* Returns directory of compiled templates
|
|
|
|
*
|
|
|
|
* @package Smarty
|
|
|
|
* @subpackage SmartyMethod
|
|
|
|
* @author Uwe Tews
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns directory of compiled templates
|
|
|
|
*/
|
|
|
|
|
2009-08-08 17:28:23 +00:00
|
|
|
/**
|
2009-03-30 17:05:37 +00:00
|
|
|
* Returns directory of compiled templates
|
2009-08-08 17:28:23 +00:00
|
|
|
*
|
|
|
|
* @return array compiled template folder
|
|
|
|
*/
|
2009-11-03 20:38:38 +00:00
|
|
|
function Smarty_Method_GetCompileDir($smarty)
|
2009-08-08 17:28:23 +00:00
|
|
|
{
|
|
|
|
return $this->smarty->compile_dir;
|
2009-03-30 17:05:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
?>
|