Files
ventas_php/libs/sysplugins/smarty_method_iscompilecheck.php

22 lines
260 B
PHP
Executable File

<?php
/**
* Smarty method IsCompileCheck
*
* is compile checking
*
* @package Smarty
* @subpackage SmartyMethod
* @author Uwe Tews
*/
/**
* is compile checking
*/
function Smarty_Method_IsCompileCheck($smarty)
{
return $smarty->compile_check;
}
?>