API16:JEditor/getContent
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
Contents |
Description
Get the editor contents
Description:JEditor/getContent
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; }
[Edit See Also] SeeAlso:JEditor/getContent
Examples
<CodeExamplesForm />
