Nick.h
Nick.h

Reputation: 4255

How to alter block configuration form in Drupal 7?

How can I alter block configurations in Drupal 7?

There are some hooks like hook_block_info_alter() and hook_block_view_alter() but it seems there is not anything named "hook_block_configure_alter".

Is hook_form_alter() the only solution?

Upvotes: 1

Views: 2654

Answers (1)

Laxman13
Laxman13

Reputation: 5211

Yes, you should use hook_form_alter() or hook_form_FORM_ID_alter(). If you are making changes specific to a single form, the latter should be used. A good description of the two hooks can be found HERE.

Upvotes: 1

Related Questions