API16:JCache/ construct
From Joomla! Documentation
Description
Constructor
<! removed transcluded page call, red link never existed >
Syntax
__construct($options)
| Parameter Name | Default Value | Description |
|---|---|---|
| $options | $options options |
Defined in
libraries/joomla/cache/cache.php
Importing
jimport( 'joomla.cache.cache' );
Source Body
function __construct($options)
{
$this->_options = array(
'language'=>'en-GB',
'cachebase'=>JPATH_ROOT.DS.'cache',
'defaultgroup'=>'default',
'caching'=>true,
'storage'=>'file');
// Overwrite default options with given options
$this->_options = array_merge($this->_options,$options);
//@todo:or with the ampersand here? Like "...& $options);" for speed if array_merge or this construct would make a deep copy otherwise
// Fix to detect if template positions are enabled...
if (JRequest::getCMD('tpl',0)) {
$this->_options['caching'] = false;
}
}
<! removed transcluded page call, red link never existed >
Examples
Code Examples