mirror of
https://github.com/smarty-php/smarty.git
synced 2025-10-16 14:05:21 +02:00
22 lines
226 B
PHP
22 lines
226 B
PHP
<?php
|
|
|
|
/**
|
|
* Smarty method IsCaching
|
|
*
|
|
* is caching
|
|
*
|
|
* @package Smarty
|
|
* @subpackage SmartyMethod
|
|
* @author Uwe Tews
|
|
*/
|
|
|
|
/**
|
|
* is caching
|
|
*/
|
|
function Smarty_Method_IsCaching($smarty)
|
|
{
|
|
return $smarty->caching;
|
|
}
|
|
|
|
?>
|