API16

Difference between revisions of "JFactory/getCache"

From Joomla! Documentation

< API16:JFactory
(New page: ===Description=== Get a cache object <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>Edit Descripton<nowiki>]</nowiki> </span> ...)
 
m (removing red link to edit, no existant pages)
Line 3: Line 3:
  
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[Description:JFactory/getCache|Edit Descripton]]<nowiki>]</nowiki>
+
<nowiki>[<! removed edit link to red link >]</nowiki>
 
</span>
 
</span>
  
{{Description:JFactory/getCache}}
+
<! removed transcluded page call, red link never existed >
  
 
===Syntax===
 
===Syntax===
Line 67: Line 67:
  
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[SeeAlso:JFactory/getCache|Edit See Also]]<nowiki>]</nowiki>
+
<nowiki>[<! removed edit link to red link >]</nowiki>
 
</span>
 
</span>
{{SeeAlso:JFactory/getCache}}
+
<! removed transcluded page call, red link never existed >
  
 
===Examples===
 
===Examples===
Line 82: Line 82:
 
  format= ,,,
 
  format= ,,,
 
</dpl>
 
</dpl>
 +
[[Category:Archived pages API16]]

Revision as of 00:06, 13 May 2013

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]

Get a cache object

[<! removed edit link to red link >]

<! removed transcluded page call, red link never existed >

Syntax[edit]

static getCache($group= '', $handler= 'callback', $storage=null)
Parameter Name Default Value Description
$group The cache group name
$handler 'callback' The handler to use
$storage null The storage method

Returns[edit]

object

Defined in[edit]

libraries/joomla/factory.php

Importing[edit]

jimport( 'joomla.factory' );

Source Body[edit]

public static function getCache($group = '', $handler = 'callback', $storage = null)
{
        $handler = ($handler == 'function') ? 'callback' : $handler;

        $conf = &JFactory::getConfig();

        if (!isset($storage)) {
                $storage = $conf->getValue('config.cache_handler', 'file');
        }

        $options = array(
                'defaultgroup'  => $group,
                'cachebase'             => $conf->getValue('config.cache_path'),
                'lifetime'              => $conf->getValue('config.cachetime') * 60,    // minutes to seconds
                'language'              => $conf->getValue('config.language'),
                'storage'               => $storage
        );

        jimport('joomla.cache.cache');

        $cache = &JCache::getInstance($handler, $options);
        $cache->setCaching($conf->getValue('config.caching'));
        return $cache;
}

[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >

Examples[edit]

<CodeExamplesForm />