Code

Updated smarty
[gosa.git] / gosa-core / include / smarty / sysplugins / smarty_method_isconfigreadhidden.php
1 <?php
3 /**
4 * Smarty method IsConfigReadHidden
5
6 * is config read hidden mode
7
8 * @package Smarty
9 * @subpackage SmartyMethod
10 * @author Uwe Tews 
11 */
13 /**
14
15 * is config read hidden mode
16 */
17 function  Smarty_Method_IsConfigReadHidden($smarty)
18     {
19         return $smarty->config_read_hidden;
20     } 
21 ?>