API16:JForm/getInput
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
Method to get the input control for a field.
Syntax
getInput($name, $group= '_default', $formControl= '_default', $groupControl= '_default', $value=null)
| Parameter Name | Default Value | Description |
|---|---|---|
| $name | $name The field name. | |
| $group | '_default' | $group The group the field is in. |
| $formControl | '_default' | $formControl The optional form control. Set to false to disable. |
| $groupControl | '_default' | $groupControl The optional group control. Set to false to disable. |
| $value | null | $value The optional value to render as the default for the field. |
Returns
string The form field input control.
Defined in
libraries/joomla/form/form.php
Importing
jimport( 'joomla.form.form' );
Source Body
public function getInput($name, $group = '_default', $formControl = '_default', $groupControl = '_default', $value = null) { // Render the field input. $field = $this->getField($name, $group, $formControl, $groupControl, $value); $input = $field->input; return $input; }
[Edit See Also] SeeAlso:JForm/getInput
Examples
<CodeExamplesForm />
