function ife_form_id_display in Inline Form Errors 7
Same name and namespace in other branches
- 6.2 ife.module \ife_form_id_display()
- 6 ife.module \ife_form_id_display()
- 7.2 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 - Implements hook_form_alter().
File
- ./
ife.module, line 170 - 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;
}