API15

JCacheOutput/end: Difference between revisions

From Joomla! Documentation

m removing red link to edit, no existant pages
m preparing for archive only
 
Line 46: Line 46:


===Examples===
===Examples===
<CodeExamplesForm />
=== Code Examples ===
<dpl>
<dpl>
  noresultsheader=\n
  noresultsheader=\n
  category=end
  category=end
  category=JCacheOutput
  category=JCacheOutput
  category=CodeExample
  namespace=CodeExample
  category=MethodExample
  category=MethodExample
  include=*
  include=*

Latest revision as of 00:21, 25 March 2017

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

Code Examples