You are here

function search_api_page_search_box_content_type_edit_form_submit in Search API Pages 7

Form submission handler for search_api_page_search_box_content_type_edit_form().

File

plugins/content_types/search_api_page_search_box.inc, line 79

Code

function search_api_page_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];
  }
}