API16

JCache/setCaching

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]

Set caching enabled state


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

Syntax[edit]

setCaching($enabled)
Parameter Name Default Value Description
$enabled $enabled True to enable caching

Returns[edit]

void

Defined in[edit]

libraries/joomla/cache/cache.php

Importing[edit]

jimport( 'joomla.cache.cache' );

Source Body[edit]

function setCaching($enabled)
{
        $this->_options['caching'] = $enabled;
}


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

Examples[edit]

Code Examples[edit]