Aqui está como garantir que seu hook_form_alter seja chamado após outros módulos hook_form_alter:
/**
* Implements hook_form_alter().
*/
function my_module_form_alter(&$form, &$form_state, $form_id) {
// do your stuff
}
/**
* Implements hook_module_implements_alter().
*
* Make sure that our form alter is called AFTER the same hook provided in xxx
*/
function my_module_module_implements_alter(&$implementations, $hook) {
if ($hook == 'form_alter') {
// Move my_module_rdf_mapping() to the end of the list. module_implements()
// iterates through $implementations with a foreach loop which PHP iterates
// in the order that the items were added, so to move an item to the end of
// the array, we remove it and then add it.
$group = $implementations['my_module'];
unset($implementations['my_module']);
$implementations['my_module'] = $group;
}
}
Isso também funciona quando o outro módulo forneceu um gancho form_alter na variação: hook_form_FORM_ID_alter. (eles explicam isso na documentação: hook_module_implements_alter ).
Eu sei que este post é bastante semelhante ao post de wiifm, mas achei útil com um exemplo com hook_form_alter