function _ife_blacklist in Inline Form Errors 7.2
Return an array of core form ids that are not compatible with ife
1 call to _ife_blacklist()
- ife_form_alter in ./
ife.module - Implements hook_form_alter().
File
- ./
ife.module, line 212 - Drupal hooks.
Code
function _ife_blacklist() {
return array(
'menu_overview_form',
'block_admin_display_form',
'book_admin_edit',
'filter_admin_order',
'profile_admin_overview',
'taxonomy_overview_terms',
'node_form',
);
}