API15

JPlugin/ construct

From Joomla! Documentation

< API15:JPlugin
Revision as of 20:02, 24 March 2017 by JoomlaWikiBot (talk | contribs) (preparing for archive only)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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]

Code Examples[edit]