API16

JCache/ construct: Difference between revisions

From Joomla! Documentation

m removing red link to edit, no existant pages
m clean up
Line 2: Line 2:
Constructor
Constructor


<span class="editsection" style="font-size:76%;">
 
<nowiki>[<! removed edit link to red link >]</nowiki>
</span>


<! removed transcluded page call, red link never existed >
<! removed transcluded page call, red link never existed >
Line 49: Line 47:
</source>
</source>


<span class="editsection" style="font-size:76%;">
 
<nowiki>[<! removed edit link to red link >]</nowiki>
</span>
<! removed transcluded page call, red link never existed >
<! removed transcluded page call, red link never existed >



Revision as of 13:41, 24 March 2017

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

<CodeExamplesForm />