mirror of
https://github.com/smarty-php/smarty.git
synced 2026-02-01 11:09:24 +01:00
26 lines
356 B
PHP
26 lines
356 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Smarty method disableCaching
|
||
|
|
*
|
||
|
|
* Disable caching
|
||
|
|
*
|
||
|
|
* @package Smarty
|
||
|
|
* @subpackage SmartyMethod
|
||
|
|
* @author Uwe Tews
|
||
|
|
*/
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Smarty class disableCaching
|
||
|
|
*
|
||
|
|
* Disable caching
|
||
|
|
*/
|
||
|
|
class Smarty_Method_DisableCaching extends Smarty_Internal_Base {
|
||
|
|
public function execute()
|
||
|
|
{
|
||
|
|
return $this->smarty->caching = false;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
?>
|