mirror of
https://github.com/smarty-php/smarty.git
synced 2025-10-17 14:35:19 +02:00
22 lines
260 B
PHP
22 lines
260 B
PHP
<?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;
|
|
}
|
|
|
|
?>
|