function google_cse_forms in Google Custom Search Engine 6
Same name and namespace in other branches
- 5 google_cse.module \google_cse_forms()
 
Implementation of hook_forms();
File
- ./
google_cse.module, line 74  - Display a Google Custom Search Engine on your site.
 
Code
function google_cse_forms() {
  $forms = array();
  $forms['google_cse_searchbox_form'] = array(
    'callback' => 'google_cse_searchbox_form_builder',
    'callback arguments' => array(
      'google_cse_searchbox_form',
    ),
  );
  $forms['google_cse_results_searchbox_form'] = array(
    'callback' => 'google_cse_searchbox_form_builder',
    'callback arguments' => array(
      'google_cse_results_searchbox_form',
    ),
  );
  return $forms;
}