JCache/ construct
From Joomla! Documentation
< API16:JCache
The "API16" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.
Description[edit]
Constructor
<! removed transcluded page call, red link never existed >
Syntax[edit]
__construct($options)
Parameter Name | Default Value | Description |
---|---|---|
$options | $options options |
Defined in[edit]
libraries/joomla/cache/cache.php
Importing[edit]
jimport( 'joomla.cache.cache' );
Source Body[edit]
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[edit]
Code Examples[edit]