Files
ventas_php/libs/sysplugins/smarty_method_isforcecompile.php

24 lines
276 B
PHP
Executable File

<?php
/**
* Smarty method IsForceCompile
*
* is forced compiling
*
* @package Smarty
* @subpackage SmartyMethod
* @author Uwe Tews
*/
/**
*
* is forced compiling
*/
function Smarty_Method_IsForceCompile($smarty)
{
return $smarty->force_compile;
}
?>