function ife_field_types in Inline Form Errors 6.2
Same name and namespace in other branches
- 6 ife.module \ife_field_types()
- 7 ife.module \ife_field_types()
Helper function that identifies the different field types default in drupal
1 call to ife_field_types()
- ife_filter_form in ./
ife.module - Function to recursivly go through a form and alter all valid field type elements
File
- ./
ife.module, line 237 - Drupal hooks
Code
function ife_field_types() {
$expandable = ife_expandable_field_types();
$extra = array(
'checkbox',
'file',
'password',
'radio',
'select',
'textarea',
'textfield',
'weight',
);
return array_merge($expandable, $extra);
}