JPaneSliders/ construct: Difference between revisions
From Joomla! Documentation
New page: ===Description===
Constructor.
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>Edit Descripton<nowiki>]</nowiki>
</span>
... |
m clean up |
||
| Line 2: | Line 2: | ||
Constructor. | Constructor. | ||
{{Description:JPaneSliders/__construct}} | |||
{{subst:Description:JPaneSliders/__construct}} | |||
===Syntax=== | ===Syntax=== | ||
| Line 42: | Line 40: | ||
</source> | </source> | ||
{{subst:SeeAlso:JPaneSliders/__construct}} | |||
{{SeeAlso:JPaneSliders/__construct}} | |||
===Examples=== | ===Examples=== | ||
Revision as of 14:17, 24 March 2017
Description
Constructor.
{{subst:Description:JPaneSliders/__construct}}
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;
}
}
{{subst:SeeAlso:JPaneSliders/__construct}}
Examples
<CodeExamplesForm />