API16:JEditor/save
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
Save the editor content
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; }
[Edit See Also] SeeAlso:JEditor/save
Examples
<CodeExamplesForm />
