Go to the source code of this file.
|
| $input = elgg_extract('input', $vars) |
| Form field view. More...
|
|
if(empty($input)) | $view = elgg_extract('view', $vars) |
|
if($view &&elgg_view_exists($view)) | $label = elgg_extract('label', $vars, '') |
|
| $help = elgg_extract('help', $vars, '') |
|
| $class = elgg_extract_class($vars, 'elgg-field') |
|
if(elgg_extract('input_type', $vars)) if(elgg_extract('required', $vars)) if(elgg_extract('disabled', $vars)) | $field = $label . $input . $help |
|
Form field view.
$vars['input'] Form input element $vars['id'] ID attribute of the input element $vars['required'] Required or optional input $vars['label'] HTML content of the label element $vars['help'] HTML content of the help element $vars['view'] View to use to render the field
Definition at line 13 of file field.php.