API16

API16:JForm/ construct

From Joomla! Documentation

Description

Method to construct the object on instantiation.


<! removed transcluded page call, red link never existed >

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'] : '%__';
}


<! removed transcluded page call, red link never existed >

Examples

Code Examples