API16:JEditor/setContent
From Joomla! Documentation
Description
Set the editor contents
<! removed transcluded page call, red link never existed >
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;
}
<! removed transcluded page call, red link never existed >
Examples
Code Examples