mirror of
https://github.com/smarty-php/smarty.git
synced 2025-10-16 05:55:20 +02:00
27 lines
404 B
PHP
27 lines
404 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()
|
|
{
|
|
$this->smarty->force_compile = false;
|
|
return;
|
|
}
|
|
}
|
|
|
|
?>
|