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