function google_cse_results_tab in Google Custom Search Engine 7
Same name and namespace in other branches
- 6 google_cse.module \google_cse_results_tab()
 - 7.3 google_cse.module \google_cse_results_tab()
 - 7.2 google_cse.module \google_cse_results_tab()
 
Return the Google CSE tab title, either a setting or a translation.
1 call to google_cse_results_tab()
- google_cse_search_info in ./
google_cse.module  - Implements hook_search_info().
 
2 string references to 'google_cse_results_tab'
- google_cse_admin_settings in ./
google_cse.admin.inc  - Admin settings page for the CSE.
 - google_cse_uninstall in ./
google_cse.install  - Implements hook_uninstall().
 
File
- ./
google_cse.module, line 115  - Display a Google Custom Search Engine (CSE) on your site.
 
Code
function google_cse_results_tab() {
  return ($var = variable_get('google_cse_results_tab', '')) ? $var : t('Google');
}