How to alter block configuration form in Drupal 7? -
how can alter block configurations in drupal 7?
there hooks hook_block_info_alter()
, hook_block_view_alter()
seems there not named "hook_block_configure_alter".
is hook_form_alter()
solution?
yes, should use hook_form_alter()
or hook_form_form_id_alter()
. if making changes specific single form, latter should used. description of 2 hooks can found here.
Comments
Post a Comment