API16:JEditor/setContent
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
Set the editor contents
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] SeeAlso:JEditor/setContent
Examples
<CodeExamplesForm />
