API15

Difference between revisions of "JCacheOutput/end"

From Joomla! Documentation

< API15:JCacheOutput
(New page: ===Description=== Stop the cache buffer and store the cached data <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>Edit Descripton<...)
 
m (removing red link to edit, no existant pages)
Line 3: Line 3:
  
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[Description:JCacheOutput/end|Edit Descripton]]<nowiki>]</nowiki>
+
<nowiki>[<! removed edit link to red link >]</nowiki>
 
</span>
 
</span>
  
{{Description:JCacheOutput/end}}
+
<! removed transcluded page call, red link never existed >
  
 
===Syntax===
 
===Syntax===
Line 41: Line 41:
  
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[SeeAlso:JCacheOutput/end|Edit See Also]]<nowiki>]</nowiki>
+
<nowiki>[<! removed edit link to red link >]</nowiki>
 
</span>
 
</span>
{{SeeAlso:JCacheOutput/end}}
+
<! removed transcluded page call, red link never existed >
  
 
===Examples===
 
===Examples===
Line 56: Line 56:
 
  format= ,,,
 
  format= ,,,
 
</dpl>
 
</dpl>
 +
[[Category:Archived pages API15]]

Revision as of 08:48, 12 May 2013

The "API15" 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 />