Files
smarty/libs/sysplugins/smarty_method_isconfigoverwrite.php
T

22 lines
279 B
PHP
Raw Normal View History

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