You are here

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

Custom submit handler to save panels pane configuration for styling

1 string reference to 'varbase_fpp_content_type_modal_submit'
_varbase_slideshow_form_alter in modules/starter_kits/varbase_fpp/varbase_fpp.module

File

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

Code

function varbase_fpp_content_type_modal_submit(&$form, &$form_state) {

  // Options that we have to added to views_panes form alter
  $form_elements = array(
    'views_diplay',
  );

  // Add the options to conf will save them with pane settings
  foreach ($form_elements as $element) {
    if (isset($form_state['values'][$element])) {
      $form_state['conf'][$element] = $form_state['values'][$element];
    }
  }
}