You are here

function fullcalendar_legend_content_type_edit_form_submit in FullCalendar 7.2

Form submission handler for fullcalendar_legend_content_type_edit_form().

File

fullcalendar_legend/plugins/content_types/fullcalendar_legend.inc, line 70

Code

function fullcalendar_legend_content_type_edit_form_submit($form, &$form_state) {
  foreach (array(
    'view',
    'legend_type',
  ) as $key) {
    $form_state['conf'][$key] = $form_state['values'][$key];
  }
}