API15:JCachePage/store
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
store()
Returns
boolean True if cache stored
Defined in
libraries/joomla/cache/handler/page.php
Importing
jimport( 'joomla.cache.handler.page' );
Source Body
function store() { // Get page data from JResponse body $data = JResponse::getBody(); // Get id and group and reset them placeholders $id = $this->_id; $group = $this->_group; $this->_id = null; $this->_group = null; // Only attempt to store if page data exists if ($data) { return parent::store($data, $id, $group); } return false; }
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
<CodeExamplesForm />
