API15

JEditor/getContent

From Joomla! Documentation

< API15:JEditor

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]

Get the editor contents

[<! removed edit link to red link >]

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

Syntax[edit]

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

Defined in[edit]

libraries/joomla/html/editor.php

Importing[edit]

jimport( 'joomla.html.editor' );

Source Body[edit]

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 edit link to red link >] <! removed transcluded page call, red link never existed >

Examples[edit]

Code Examples[edit]