API16

JFormField/ construct: Difference between revisions

From Joomla! Documentation

m clean up
m preparing for archive only
 
Line 40: Line 40:


===Examples===
===Examples===
<CodeExamplesForm />
=== Code Examples ===
<dpl>
<dpl>
  noresultsheader=\n
  noresultsheader=\n
  category=__construct
  category=__construct
  category=JFormField
  category=JFormField
  category=CodeExample
  namespace=CodeExample
  category=MethodExample
  category=MethodExample
  include=*
  include=*

Latest revision as of 01:42, 25 March 2017

Description

Method to instantiate the form field.


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

Syntax

__construct($form=null)
Parameter Name Default Value Description
$form null $form A reference to the form that the field belongs to.

Returns

void

Defined in

libraries/joomla/form/formfield.php

Importing

jimport( 'joomla.form.formfield' );

Source Body

public function __construct($form = null)
{
        $this->_form = $form;
}


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

Examples

Code Examples