Files
ventas_php/libs/sysplugins/smarty_method_isconfigbooleanize.php

22 lines
284 B
PHP
Executable File

<?php
/**
* Smarty method IsConfigBooleanize
*
* is config booleanize mode
*
* @package Smarty
* @subpackage SmartyMethod
* @author Uwe Tews
*/
/**
* is config booleanize mode
*/
function Smarty_Method_IsConfigBooleanize($smarty)
{
return $smarty->config_booleanize;
}
?>