Files
ventas_php/libs/sysplugins/smarty_method_isconfigoverwrite.php

22 lines
279 B
PHP
Executable File

<?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;
}
?>