mirror of
https://github.com/smarty-php/smarty.git
synced 2026-07-10 10:20:59 +02:00
cf379474fd
- lexer/parser changed for increased compilation speed
22 lines
211 B
PHP
22 lines
211 B
PHP
<?php
|
|
|
|
/**
|
|
* Smarty method isCaching
|
|
*
|
|
* is caching
|
|
*
|
|
* @package Smarty
|
|
* @subpackage SmartyMethod
|
|
* @author Uwe Tews
|
|
*/
|
|
|
|
/**
|
|
* is caching
|
|
*/
|
|
function isCaching($smarty)
|
|
{
|
|
return $smarty->caching;
|
|
}
|
|
|
|
?>
|