Вот как убедиться, что ваш hook_form_alter вызывается после других модулей 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;
}
}
Это также работает, когда другой модуль предоставил хук form_alter в варианте: hook_form_FORM_ID_alter. (они объясняют это в документации: hook_module_implements_alter ).
Я знаю, что этот пост очень похож на пост wiifm, но счел его полезным на примере с hook_form_alter