You are here

function ctools_form_ctools_search_form_alter in Chaos Tool Suite (ctools) 6

Form alter the submit/validate onto our customized search form.

File

plugins/content_types/search/search_form.inc, line 165

Code

function ctools_form_ctools_search_form_alter(&$form, &$form_state) {
  $form['#validate'] = array(
    'search_form_validate',
  );
  $form['#submit'] = array(
    'search_form_submit',
  );
}