You are here

function ife_form_id_display in Inline Form Errors 6.2

Same name and namespace in other branches
  1. 6 ife.module \ife_form_id_display()
  2. 7.2 ife.module \ife_form_id_display()
  3. 7 ife.module \ife_form_id_display()

Helper function to determine the display settings of a form

1 call to ife_form_id_display()
ife_form_alter in ./ife.module
Implementation of hook_form_alter().

File

./ife.module, line 124
Drupal hooks

Code

function ife_form_id_display($form_id) {
  if ($form_id->display == -1) {
    $display = variable_get('ife_display', 1);
  }
  else {
    $display = $form_id->display;
  }
  return $display;
}