API16

JCacheOutput/end

From Joomla! Documentation

< API16:JCacheOutput
Revision as of 21:53, 12 May 2013 by JoomlaWikiBot (talk | contribs) (removing red link to edit, no existant pages)

The "API16" 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.

Description[edit]

Stop the cache buffer and store the cached data

[<! removed edit link to red link >]

<! removed transcluded page call, red link never existed >

Syntax[edit]

end()


Returns[edit]

boolean True if cache stored

Defined in[edit]

libraries/joomla/cache/handler/output.php

Importing[edit]

jimport( 'joomla.cache.handler.output' );

Source Body[edit]

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[edit]

<CodeExamplesForm />