JParameter/bind
From Joomla! Documentation
< API15:JParameter
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]
Bind data to the parameter
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax[edit]
bind($data, $group= '_default')
Parameter Name | Default Value | Description |
---|---|---|
$data | $data Array or Object | |
$group | '_default' |
Returns[edit]
boolean True if the data was successfully bound public
Defined in[edit]
libraries/joomla/html/parameter.php
Importing[edit]
jimport( 'joomla.html.parameter' );
Source Body[edit]
function bind($data, $group = '_default')
{
if ( is_array($data) ) {
return $this->loadArray($data, $group);
} elseif ( is_object($data) ) {
return $this->loadObject($data, $group);
} else {
return $this->loadINI($data, $group);
}
}
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples[edit]
Code Examples[edit]