API16

API16:JEditor/setContent

From Joomla! Documentation

Revision as of 22:49, 22 March 2010 by Doxiki (talk | contribs) (New page: ===Description=== Set the editor contents <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>Edit Descripton<nowiki>]</nowiki> </s...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Description

Set the editor contents

[Edit Descripton]

Template:Description:JEditor/setContent

Syntax

setContent($editor, $html)
Parameter Name Default Value Description
$editor The name of the editor control
$html The contents of the text area

Defined in

libraries/joomla/html/editor.php

Importing

jimport( 'joomla.html.editor' );

Source Body

public function setContent($editor, $html)
{
        $this->_loadEditor();

        $args['name'] = $editor;
        $args['html'] = $html;
        $args['event'] = 'onSetContent';

        $return = '';
        $results[] = $this->_editor->update($args);
        foreach ($results as $result) {
                if (trim($result)) {
                        $return .= $result;
                }
        }
        return $return;
}

[Edit See Also] Template:SeeAlso:JEditor/setContent

Examples

<CodeExamplesForm />