API15

API15:JPaneTabs/ construct

From Joomla! Documentation

Description

Constructor

[<! removed edit link to red link >]

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

Syntax

__construct($params=array())
Parameter Name Default Value Description
$params array() $params Associative array of values

Defined in

libraries/joomla/html/pane.php

Importing

jimport( 'joomla.html.pane' );

Source Body

function __construct( $params = array() )
{
        static $loaded = false;

        parent::__construct($params);

        if (!$loaded) {
                $this->_loadBehavior($params);
                $loaded = true;
        }
}

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

Examples

Code Examples