API16

JPaneSliders/ 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> ...
 
m preparing for archive only
 
(One intermediate revision by the same user not shown)
Line 2: Line 2:
Constructor.
Constructor.


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


{{Description:JPaneSliders/__construct}}
 
 


===Syntax===
===Syntax===
Line 42: Line 40:
</source>
</source>


<span class="editsection" style="font-size:76%;">
 
<nowiki>[</nowiki>[[SeeAlso:JPaneSliders/__construct|Edit See Also]]<nowiki>]</nowiki>
 
</span>
{{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