mirror of
https://github.com/smarty-php/smarty.git
synced 2026-02-01 19:20:02 +01:00
26 lines
395 B
PHP
26 lines
395 B
PHP
<?php
|
|
|
|
/**
|
|
* Smarty method disableCompileCheck
|
|
*
|
|
* Disable compile checking
|
|
*
|
|
* @package Smarty
|
|
* @subpackage SmartyMethod
|
|
* @author Uwe Tews
|
|
*/
|
|
|
|
/**
|
|
* Smarty class disableCompileCheck
|
|
*
|
|
* Disable compile checking
|
|
*/
|
|
class Smarty_Method_DisableCompileCheck extends Smarty_Internal_Base {
|
|
public function execute()
|
|
{
|
|
return $this->smarty->compile_check = false;
|
|
}
|
|
}
|
|
|
|
?>
|