API15:JCacheCallback/call
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
Contents |
Description
Executes a cacheable callback if not found in cache else returns cached output and result
Description:JCacheCallback/call
Syntax
call()
Returns
mixed Result of the callback
Defined in
libraries/joomla/cache/handler/callback.php
Importing
jimport( 'joomla.cache.handler.callback' );
Source Body
function call() { // Get callback and arguments $args = func_get_args(); $callback = array_shift($args); return $this->get( $callback, $args ); }
[Edit See Also] SeeAlso:JCacheCallback/call
Examples
<CodeExamplesForm />
