API16

API16:JCache/ construct

From Joomla! Documentation

Revision as of 22:37, 22 March 2010 by Doxiki (talk | contribs) (New page: ===Description=== Constructor <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>Edit Descripton<nowiki>]</nowiki> </span> {{De...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Description

Constructor

[Edit Descripton]

Template:Description:JCache/ construct

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;
        }
}

[Edit See Also] Template:SeeAlso:JCache/ construct

Examples

<CodeExamplesForm />