You are here

function template_preprocess_google_cse_results_gadget in Google Custom Search Engine 7

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

Display an Add-to-Google button.

File

./google_cse.theme.inc, line 27
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'] = rawurlencode($cx[0]);
  $variables['id'] = isset($cx[1]) ? rawurlencode($cx[1]) : '';
}