function ife_form_id_display in Inline Form Errors 7.2
Same name and namespace in other branches
- 6.2 ife.module \ife_form_id_display()
- 6 ife.module \ife_form_id_display()
- 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 - Implements hook_form_alter().
File
- ./
ife.module, line 161 - Drupal hooks.
Code
function ife_form_id_display($form_id) {
if ($form_id->display == IFE_MESSAGE_DEFAULT) {
$display = variable_get('ife_display', IFE_MESSAGE_ALTERNATE);
}
else {
$display = $form_id->display;
}
return $display;
}