API15:JCacheOutput/start
From Joomla! Documentation
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 >
Examples
Code Examples