Đây là cách đảm bảo hook_form_alter của bạn được gọi sau một mô-đun khác 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;
}
}
Điều này cũng hoạt động khi mô-đun khác đã cung cấp một hook form_alter trong biến thể: hook_form_FORM_ID_alter. (họ giải thích rằng trong tài liệu: hook_module_implements_alter ).
Tôi biết rằng bài đăng này khá giống với bài đăng của wiifm, nhưng nghĩ rằng nó hữu ích với một ví dụ với hook_form_alter