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 |
|
◆ $class
◆ $field
◆ $help
◆ $input
Form field view.
@uses $vars['input'] Form input element @uses $vars['id'] ID attribute of the input element @uses $vars['required'] Required or optional input @uses $vars['label'] HTML content of the label element @uses $vars['help'] HTML content of the help element @uses $vars['view'] View to use to render the field
Definition at line 13 of file field.php.
◆ $label
◆ $view