API16:JCacheOutput/end
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
Contents |
Description
Stop the cache buffer and store the cached data
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax
end()
Returns
boolean True if cache stored
Defined in
libraries/joomla/cache/handler/output.php
Importing
jimport( 'joomla.cache.handler.output' );
Source Body
function end() { // Get data from output buffer and echo it $data = ob_get_contents(); ob_end_clean(); echo $data; // Get id and group and reset them placeholders $id = $this->_id; $group = $this->_group; $this->_id = null; $this->_group = null; // Get the storage handler and store the cached data $this->store($data, $id, $group); }
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
<CodeExamplesForm />
