JCacheOutput/start
From Joomla! Documentation
< API15:JCacheOutput
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.
Contents
Description
Start the cache
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax
start($id, $group=null)
Parameter Name | Default Value | Description |
---|---|---|
$id | $id The cache data id | |
$group | null | $group The cache data group |
Returns
boolean True if the cache is hit (false else)
Defined in
libraries/joomla/cache/handler/output.php
Importing
jimport( 'joomla.cache.handler.output' );
Source Body
function start( $id, $group=null)
{
// If we have data in cache use that...
$data = $this->get($id, $group);
if ($data !== false) {
echo $data;
return true;
} else {
// Nothing in cache... lets start the output buffer and start collecting data for next time.
ob_start();
ob_implicit_flush( false );
// Set id and group placeholders
$this->_id = $id;
$this->_group = $group;
return false;
}
}
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >