API16:JEditor/save
From Joomla! Documentation
Description
Save the editor content
<! removed transcluded page call, red link never existed >
Syntax
save($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 save($editor)
{
$this->_loadEditor();
//check if editor is already loaded
if (is_null(($this->_editor))) {
return;
}
$args[] = $editor;
$args['event'] = 'onSave';
$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