API16:JForm/ construct
From Joomla! Documentation
Contents |
Description
Method to construct the object on instantiation.
Syntax
__construct($options=array())
| Parameter Name | Default Value | Description |
|---|---|---|
| $options | array() | $options An array of form options. |
Returns
void
Defined in
libraries/joomla/form/form.php
Importing
jimport( 'joomla.form.form' );
Source Body
public function __construct($options = array()) { // Set the options if specified. $this->_options['array'] = array_key_exists('array', $options) ? $options['array'] : false; $this->_options['prefix'] = array_key_exists('prefix', $options) ? $options['prefix'] : '%__'; }
[Edit See Also] SeeAlso:JForm/ construct