API15

Difference between revisions of "JCache/ construct"

From Joomla! Documentation

< API15:JCache
(New page: ===Description=== Constructor <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>Edit Descripton<nowiki>]</nowiki> </span> {{De...)
 
m (preparing for archive only)
 
(2 intermediate revisions by the same user not shown)
Line 2: Line 2:
 
Constructor
 
Constructor
  
<span class="editsection" style="font-size:76%;">
 
<nowiki>[</nowiki>[[Description:JCache/__construct|Edit Descripton]]<nowiki>]</nowiki>
 
</span>
 
  
{{Description:JCache/__construct}}
+
 
 +
<! removed transcluded page call, red link never existed >
  
 
===Syntax===
 
===Syntax===
Line 71: Line 69:
 
</source>
 
</source>
  
<span class="editsection" style="font-size:76%;">
+
 
<nowiki>[</nowiki>[[SeeAlso:JCache/__construct|Edit See Also]]<nowiki>]</nowiki>
+
<! removed transcluded page call, red link never existed >
</span>
 
{{SeeAlso:JCache/__construct}}
 
  
 
===Examples===
 
===Examples===
<CodeExamplesForm />
+
=== Code Examples ===
 
<dpl>
 
<dpl>
 
  noresultsheader=\n
 
  noresultsheader=\n
 
  category=__construct
 
  category=__construct
 
  category=JCache
 
  category=JCache
  category=CodeExample
+
  namespace=CodeExample
 
  category=MethodExample
 
  category=MethodExample
 
  include=*
 
  include=*
 
  format= ,,,
 
  format= ,,,
 
</dpl>
 
</dpl>
 +
[[Category:Archived pages API15]]

Latest revision as of 19:21, 24 March 2017

The "API15" 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 =& $options;

        // Get the default group and caching
        if(isset($options['language'])) {
                $this->_options['language'] = $options['language'];
        } else {
                $options['language'] = 'en-GB';
        }

        if(isset($options['cachebase'])) {
                $this->_options['cachebase'] = $options['cachebase'];
        } else {
                $this->_options['cachebase'] = JPATH_ROOT.DS.'cache';
        }

        if(isset($options['defaultgroup'])) {
                $this->_options['defaultgroup'] = $options['defaultgroup'];
        } else {
                $this->_options['defaultgroup'] = 'default';
        }

        if(isset($options['caching'])) {
                $this->_options['caching'] =  $options['caching'];
        } else {
                $this->_options['caching'] = true;
        }

        if( isset($options['storage'])) {
                $this->_options['storage'] = $options['storage'];
        } else {
                $this->_options['storage'] = 'file';
        }

        //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]