API16

API16:JEditor/getContent

From Joomla! Documentation

Description

Get the editor contents


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

Syntax

getContent($editor)
Parameter Name Default Value Description
$editor The name of the editor control

Defined in

libraries/joomla/html/editor.php

Importing

jimport( 'joomla.html.editor' );

Source Body

public function getContent($editor)
{
        $this->_loadEditor();

        $args['name'] = $editor;
        $args['event'] = 'onGetContent';

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


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

Examples

Code Examples