mirror of
https://github.com/smarty-php/smarty.git
synced 2025-10-17 06:25:19 +02:00
23 lines
312 B
PHP
23 lines
312 B
PHP
<?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;
|
|
}
|
|
|
|
?>
|