Hook_form_alter modülünden sonra hook_form_alter öğenizin çağrılmasını sağlamak için:
/**
* 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;
}
}
Bu, diğer modül varyasyonda bir form_alter kancası sağladığında da çalışır: hook_form_FORM_ID_alter. (bunu belgelerde açıklarlar : hook_module_implements_alter ).
Bu yazının wiifm'in yazısına oldukça benzediğini biliyorum, ancak hook_form_alter ile bir örnekle yararlı olduğunu düşündüm