game/onyx2/modules/templates/smarty/sysplugins/smarty_method_iscaching.php

22 lines
211 B
PHP
Raw Normal View History

2020-11-15 15:12:32 +00:00
<?php
/**
* Smarty method isCaching
*
* is caching
*
* @package Smarty
* @subpackage SmartyMethod
* @author Uwe Tews
*/
/**
* is caching
*/
function isCaching($smarty)
{
return $smarty->caching;
}
?>