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