You are here

function google_cse_results in Google Custom Search Engine 5

Same name and namespace in other branches
  1. 6 google_cse.module \google_cse_results()

Render the search page and custom title.

1 string reference to 'google_cse_results'
google_cse_menu in ./google_cse.module
Implementation of hook_menu().

File

./google_cse.module, line 311
Display a Google Custom Search Engine on your site.

Code

function google_cse_results() {
  drupal_set_title(check_plain(variable_get('google_cse_results_title', t('Search'))));
  print theme('page', theme('google_cse_results'));
}