You are here

function ctools_forms in Chaos Tool Suite (ctools) 6

Provide a search form with a different id so that form_alters will miss it and thus not get advanced search settings.

File

./ctools.module, line 440
CTools primary module file.

Code

function ctools_forms() {
  $forms['ctools_search_form'] = array(
    'callback' => 'search_form',
  );
  return $forms;
}