game/onyx2/modules/templates/smarty/sysplugins/smarty_method_iscompilecheck.php

22 lines
245 B
PHP

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