You are here

function ife_field_types in Inline Form Errors 7

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

Code

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