API16:JParameter/bind
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
Contents |
Description
Bind data to the parameter.
Syntax
bind($data, $group= '_default')
| Parameter Name | Default Value | Description |
|---|---|---|
| $data | $data Array or Object. | |
| $group | '_default' |
Returns
boolean True if the data was successfully bound.
Defined in
libraries/joomla/html/parameter.php
Importing
jimport( 'joomla.html.parameter' );
Source Body
public 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->loadJSON($data, $group); } }
[Edit See Also] SeeAlso:JParameter/bind
Examples
<CodeExamplesForm />
