mirror of
https://github.com/smarty-php/smarty.git
synced 2025-10-21 00:15:20 +02:00
26 lines
395 B
PHP
26 lines
395 B
PHP
![]() |
<?php
|
||
|
|
||
|
/**
|
||
|
* Smarty method disableForceCompile
|
||
|
*
|
||
|
* Disable forced compiling
|
||
|
*
|
||
|
* @package Smarty
|
||
|
* @subpackage SmartyMethod
|
||
|
* @author Uwe Tews
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* Smarty class disableForceCompile
|
||
|
*
|
||
|
* Disable forced compiling
|
||
|
*/
|
||
|
class Smarty_Method_DisableForceCompile extends Smarty_Internal_Base {
|
||
|
public function execute()
|
||
|
{
|
||
|
return $this->smarty->force_compile = false;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
?>
|