game/onyx2/modules/templates/smarty/sysplugins/smarty_method_isconfigbooleanize.php

22 lines
269 B
PHP

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