Code

Updated smarty
[gosa.git] / gosa-core / include / smarty / sysplugins / smarty_method_getcompiledir.php
1 <?php
3 /**
4 * Smarty method GetCompileDir
5
6 * Returns directory of compiled templates
7
8 * @package Smarty
9 * @subpackage SmartyMethod
10 * @author Uwe Tews 
11 */
13 /**
14 * Returns directory of compiled templates
15 */
17 /**
18 * Returns directory of compiled templates
19
20 * @return array compiled template folder
21 */
22 function  Smarty_Method_GetCompileDir($smarty)
23 {
24     return $this->smarty->compile_dir;
25
27 ?>