You are here

function template_preprocess_google_cse_results_gadget in Google Custom Search Engine 6

Same name and namespace in other branches
  1. 7 google_cse.theme.inc \template_preprocess_google_cse_results_gadget()

Display an Add-to-Google button.

File

./google_cse.theme.inc, line 36
Themeable functions for Google Custom Search Engine.

Code

function template_preprocess_google_cse_results_gadget(&$variables) {
  $cx = explode(':', variable_get('google_cse_cx', ''));
  $variables['creator'] = drupal_urlencode($cx[0]);
  $variables['id'] = isset($cx[1]) ? drupal_urlencode($cx[1]) : '';
}