You are here

function panelizer_form_alter in Panelizer 7.2

Same name and namespace in other branches
  1. 7.3 panelizer.module \panelizer_form_alter()

Implements hook_form_alter().

File

./panelizer.module, line 95
The Panelizer module attaches panels to entities, providing default panels and allowing each panel to be configured independently by privileged users.

Code

function panelizer_form_alter(&$form, &$form_state, $form_id) {

  // Delegate.
  foreach (panelizer_get_plugins_with_hook('form_alter') as $handler) {
    $handler
      ->hook_form_alter($form, $form_state, $form_id);
  }
}