mirror of
https://github.com/smarty-php/smarty.git
synced 2025-10-17 22:45:20 +02:00
22 lines
284 B
PHP
22 lines
284 B
PHP
<?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;
|
|
}
|
|
|
|
?>
|