API15

JDocument/setBuffer: Difference between revisions

From Joomla! Documentation

Doxiki (talk | contribs)
New page: ===Description=== Set the contents of the document buffer <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>Edit Descripton<nowik...
 
m preparing for archive only
 
(One intermediate revision by the same user not shown)
Line 3: Line 3:


<span class="editsection" style="font-size:76%;">
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[Description:JDocument/setBuffer|Edit Descripton]]<nowiki>]</nowiki>
<nowiki>[<! removed edit link to red link >]</nowiki>
</span>
</span>


{{Description:JDocument/setBuffer}}
<! removed transcluded page call, red link never existed >


===Syntax===
===Syntax===
Line 35: Line 35:


<span class="editsection" style="font-size:76%;">
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[SeeAlso:JDocument/setBuffer|Edit See Also]]<nowiki>]</nowiki>
<nowiki>[<! removed edit link to red link >]</nowiki>
</span>
</span>
{{SeeAlso:JDocument/setBuffer}}
<! removed transcluded page call, red link never existed >


===Examples===
===Examples===
<CodeExamplesForm />
=== Code Examples ===
<dpl>
<dpl>
  noresultsheader=\n
  noresultsheader=\n
  category=setBuffer
  category=setBuffer
  category=JDocument
  category=JDocument
  category=CodeExample
  namespace=CodeExample
  category=MethodExample
  category=MethodExample
  include=*
  include=*
  format= ,,,
  format= ,,,
</dpl>
</dpl>
[[Category:Archived pages API15]]

Latest revision as of 00:30, 25 March 2017

Description

Set the contents of the document buffer

[<! removed edit link to red link >]

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

Syntax

setBuffer($content)
Parameter Name Default Value Description
$content $content The content to be set in the buffer

Defined in

libraries/joomla/document/document.php

Importing

jimport( 'joomla.document.document' );

Source Body

function setBuffer($content) {
        $this->_buffer = $content;
}

[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >

Examples

Code Examples