API16

JEditor/ construct: Difference between revisions

From Joomla! Documentation

Doxiki (talk | contribs)
New page: ===Description=== constructor <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>Edit Descripton<nowiki>]</nowiki> </span> {{D...
 
m preparing for archive only
 
(2 intermediate revisions by the same user not shown)
Line 2: Line 2:
constructor
constructor


<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[Description:JEditor/__construct|Edit Descripton]]<nowiki>]</nowiki>
</span>


{{Description:JEditor/__construct}}
 
<! removed transcluded page call, red link never existed >


===Syntax===
===Syntax===
Line 35: Line 33:
</source>
</source>


<span class="editsection" style="font-size:76%;">
 
<nowiki>[</nowiki>[[SeeAlso:JEditor/__construct|Edit See Also]]<nowiki>]</nowiki>
<! removed transcluded page call, red link never existed >
</span>
{{SeeAlso:JEditor/__construct}}


===Examples===
===Examples===
<CodeExamplesForm />
=== Code Examples ===
<dpl>
<dpl>
  noresultsheader=\n
  noresultsheader=\n
  category=__construct
  category=__construct
  category=JEditor
  category=JEditor
  category=CodeExample
  namespace=CodeExample
  category=MethodExample
  category=MethodExample
  include=*
  include=*
  format= ,,,
  format= ,,,
</dpl>
</dpl>
[[Category:Archived pages API16]]

Latest revision as of 01:34, 25 March 2017

Description

constructor


<! removed transcluded page call, red link never existed >

Syntax

__construct($editor= 'none')
Parameter Name Default Value Description
$editor 'none' The editor name

Defined in

libraries/joomla/html/editor.php

Importing

jimport( 'joomla.html.editor' );

Source Body

public function __construct($editor = 'none')
{
        $this->_name = $editor;
}


<! removed transcluded page call, red link never existed >

Examples

Code Examples