API16

JPaneSliders/ construct: Difference between revisions

From Joomla! Documentation

m clean up
m preparing for archive only
 
Line 4: Line 4:




{{subst:Description:JPaneSliders/__construct}}
 


===Syntax===
===Syntax===
Line 41: Line 41:




{{subst:SeeAlso:JPaneSliders/__construct}}
 


===Examples===
===Examples===
<CodeExamplesForm />
=== Code Examples ===
<dpl>
<dpl>
  noresultsheader=\n
  noresultsheader=\n
  category=__construct
  category=__construct
  category=JPaneSliders
  category=JPaneSliders
  category=CodeExample
  namespace=CodeExample
  category=MethodExample
  category=MethodExample
  include=*
  include=*
  format= ,,,
  format= ,,,
</dpl>
</dpl>

Latest revision as of 01:57, 25 March 2017

Description

Constructor.



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;
        }
}



Examples

Code Examples