Files
ventas_php/libs/sysplugins/smarty_method_enableconfigbooleanize.php

23 lines
312 B
PHP
Executable File

<?php
/**
* Smarty method EnableConfigBooleanize
*
* Enable config booleanize mode
*
* @package Smarty
* @subpackage SmartyMethod
* @author Uwe Tews
*/
/**
* Enable config booleanize mode
*/
function Smarty_Method_EnableConfigBooleanize($smarty)
{
$smarty->config_booleanize = true;
return;
}
?>