JFormFieldEditor/save: Difference between revisions
From Joomla! Documentation
New page: ===Description===
Get the internal reference to the editor.
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>Edit Descripton<n... |
m preparing for archive only |
||
| (2 intermediate revisions by the same user not shown) | |||
| Line 2: | Line 2: | ||
Get the internal reference to the editor. | Get the internal reference to the editor. | ||
<! removed transcluded page call, red link never existed > | |||
===Syntax=== | ===Syntax=== | ||
| Line 28: | Line 26: | ||
</source> | </source> | ||
<! removed transcluded page call, red link never existed > | |||
< | |||
===Examples=== | ===Examples=== | ||
=== Code Examples === | |||
<dpl> | <dpl> | ||
noresultsheader=\n | noresultsheader=\n | ||
category=save | category=save | ||
category=JFormFieldEditor | category=JFormFieldEditor | ||
namespace=CodeExample | |||
category=MethodExample | category=MethodExample | ||
include=* | include=* | ||
format= ,,, | format= ,,, | ||
</dpl> | </dpl> | ||
[[Category:Archived pages API16]] | |||
Latest revision as of 01:42, 25 March 2017
Description
Get the internal reference to the editor.
<! removed transcluded page call, red link never existed >
Syntax
save()
Returns
string
Defined in
libraries/joomla/form/fields/editor.php
Importing
jimport( 'joomla.form.fields.editor' );
Source Body
public function save()
{
return $this->_editor->save($this->inputId);
}
<! removed transcluded page call, red link never existed >
Examples
Code Examples