You are here

function panopoly_magic_views_content_type_modal_submit in Panopoly Magic 7

Custom submit handler to save panels pane configuration for styling

2 string references to 'panopoly_magic_views_content_type_modal_submit'
panopoly_magic_form_ctools_entity_field_content_type_formatter_options_alter in ./panopoly_magic.module
Implementation of hook_form_FORM_ID_alter()
panopoly_magic_form_views_content_views_panes_content_type_edit_form_alter in ./panopoly_magic.module
Implementation of hook_form_FORM_ID_alter()

File

./panopoly_magic.module, line 1516

Code

function panopoly_magic_views_content_type_modal_submit(&$form, &$form_state) {
  $move = array(
    'view_settings',
    'header_type',
    'view_mode',
    'widget_title',
  );
  foreach ($move as $key) {
    if (isset($form_state['values'][$key])) {
      $form_state['conf'][$key] = $form_state['values'][$key];
    }
  }
}