Files
ventas_php/libs/sysplugins/smarty_method_isconfigreadhidden.php

22 lines
301 B
PHP
Executable File

<?php
/**
* Smarty method IsConfigReadHidden
*
* is config read hidden mode
*
* @package Smarty
* @subpackage SmartyMethod
* @author Uwe Tews
*/
/**
*
* is config read hidden mode
*/
function Smarty_Method_IsConfigReadHidden($smarty)
{
return $smarty->config_read_hidden;
}
?>