API15

Difference between revisions of "JPlugin/ construct"

From Joomla! Documentation

< API15:JPlugin
m (removing red link to edit, no existant pages)
Line 3: Line 3:
  
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[Description:JPlugin/__construct|Edit Descripton]]<nowiki>]</nowiki>
+
<nowiki>[<! removed edit link to red link >]</nowiki>
 
</span>
 
</span>
  
{{Description:JPlugin/__construct}}
+
<! removed transcluded page call, red link never existed >
  
 
===Syntax===
 
===Syntax===
Line 58: Line 58:
  
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[SeeAlso:JPlugin/__construct|Edit See Also]]<nowiki>]</nowiki>
+
<nowiki>[<! removed edit link to red link >]</nowiki>
 
</span>
 
</span>
{{SeeAlso:JPlugin/__construct}}
+
<! removed transcluded page call, red link never existed >
  
 
===Examples===
 
===Examples===
Line 73: Line 73:
 
  format= ,,,
 
  format= ,,,
 
</dpl>
 
</dpl>
 +
[[Category:Archived pages API15]]

Revision as of 13:41, 12 May 2013

The "API15" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

Description[edit]

Constructor

[<! removed edit link to red link >]

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

Syntax[edit]

__construct(&$subject, $config=array())
Parameter Name Default Value Description
&$subject
$config array()

Defined in[edit]

libraries/joomla/plugin/plugin.php

Importing[edit]

jimport( 'joomla.plugin.plugin' );

Source Body[edit]

function __construct(& $subject, $config = array())
{
        //Set the parameters
        if ( isset( $config['params'] ) ) {

                if(is_a($config['params'], 'JParameter')) {
                        $this->params = $config['params'];
                } else {
                        $this->params = new JParameter($config['params']);
                }
        }

        if ( isset( $config['name'] ) ) {
                $this->_name = $config['name'];
        }

        if ( isset( $config['type'] ) ) {
                $this->_type = $config['type'];
        }

        parent::__construct($subject);
}

[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >

Examples[edit]

<CodeExamplesForm />