Code

Updated smarty
[gosa.git] / gosa-core / include / smarty / sysplugins / smarty_method_getdebugtemplate.php
1 <?php
3 /**
4 * Smarty method GetDebugTemplate
5
6 * Returns debug template filepath
7
8 * @package Smarty
9 * @subpackage SmartyMethod
10 * @author Uwe Tews 
11 */
13 /**
14 * Returns debug template filepath
15 */
17 /**
18 * Returns directory of cache files
19
20 * @return string debug template filepath
21 */
22 function  Smarty_Method_GetDebugTemplate($smarty)
23 {
24     return $smarty->debug_tpl;
25
27 ?>