API15:JCache/getInstance
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
Returns a reference to a cache adapter object, always creating it
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax
& getInstance($type= 'output', $options=array())
| Parameter Name | Default Value | Description |
|---|---|---|
| $type | 'output' | $type The cache object type to instantiate |
| $options | array() |
Returns
object A object
Defined in
libraries/joomla/cache/cache.php
Importing
jimport( 'joomla.cache.cache' );
Source Body
function &getInstance($type = 'output', $options = array()) { $type = strtolower(preg_replace('/[^A-Z0-9_\.-]/i', '', $type)); $class = 'JCache'.ucfirst($type); if(!class_exists($class)) { $path = dirname(__FILE__).DS.'handler'.DS.$type.'.php'; if (file_exists($path)) { require_once($path); } else { JError::raiseError(500, 'Unable to load Cache Handler: '.$type); } } $instance = new $class($options); return $instance; }
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
<CodeExamplesForm />
