You are here

function ife_field_types in Inline Form Errors 6

Same name and namespace in other branches
  1. 6.2 ife.module \ife_field_types()
  2. 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 250
Drupal hooks

Code

function ife_field_types() {
  $expandable = ife_expandable_field_types();
  $extra = array(
    'checkbox',
    'file',
    'password',
    'radio',
    'select',
    'textarea',
    'textfield',
    'weight',
    'webform_email',
  );
  return array_merge($expandable, $extra);
}