Files
ventas_php/libs/sysplugins/smarty_method_enableconfigreadhidden.php

23 lines
321 B
PHP
Executable File

<?php
/**
* Smarty method EnableConfigReadHidden
*
* Enable config read hidden mode
*
* @package Smarty
* @subpackage SmartyMethod
* @author Uwe Tews
*/
/**
* Enable config read hidden mode
*/
function Smarty_Method_EnableConfigReadHidden($smarty)
{
$this->smarty->config_read_hidden = true;
return;
}
?>