mirror of
https://github.com/smarty-php/smarty.git
synced 2025-10-19 07:25:20 +02:00
26 lines
362 B
PHP
26 lines
362 B
PHP
<?php
|
|
|
|
/**
|
|
* Smarty method isForceCompile
|
|
*
|
|
* is forced compiling
|
|
*
|
|
* @package Smarty
|
|
* @subpackage SmartyMethod
|
|
* @author Uwe Tews
|
|
*/
|
|
|
|
/**
|
|
* Smarty class isForceCompile
|
|
*
|
|
* is forced compiling
|
|
*/
|
|
class Smarty_Method_isForceCompile extends Smarty_Internal_Base {
|
|
public function execute()
|
|
{
|
|
return $this->smarty->force_compile;
|
|
}
|
|
}
|
|
|
|
?>
|