You are here

function panopoly_search_search_box_content_type_edit_form_submit in Panopoly Search 7

Submit handler for search form.

File

plugins/content_types/search_box/search_box.inc, line 146
Definition of the 'search form' panel content type

Code

function panopoly_search_search_box_content_type_edit_form_submit($form, &$form_state) {

  // Copy everything from our defaults.
  foreach (array_keys($form_state['plugin']['defaults']) as $key) {
    $form_state['conf'][$key] = $form_state['values'][$key];
  }
}