API16

API16:JCachePage/store

From Joomla! Documentation

Description

Stop the cache buffer and store the cached data


<! 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 transcluded page call, red link never existed >

Examples

Code Examples