Files
ventas_php/libs/sysplugins/smarty_method_iscaching.php

22 lines
226 B
PHP
Executable File

<?php
/**
* Smarty method IsCaching
*
* is caching
*
* @package Smarty
* @subpackage SmartyMethod
* @author Uwe Tews
*/
/**
* is caching
*/
function Smarty_Method_IsCaching($smarty)
{
return $smarty->caching;
}
?>