You are here

function varbase_fpp_form_alter in Varbase: The Ultimate Drupal CMS Starter Kit (Bootstrap Ready) 7.3

Implements hook_form_alter()

File

modules/starter_kits/varbase_fpp/varbase_fpp.module, line 95

Code

function varbase_fpp_form_alter(&$form, &$form_state, $form_id) {
  switch ($form_id) {

    // Fieldable panels pane have two veriants of forms
    case 'fieldable_panels_panes_entity_edit_form':
    case 'fieldable_panels_panes_fieldable_panels_pane_content_type_edit_form':
      _varbase_fpp_fieldable_panel_pane_form_alter($form, $form_state, $form_id);
      break;
  }
}