You are here

function template_preprocess_google_appliance_keymatch in Google Search Appliance 7

Preprocess a single keymatch.

File

theme/google_appliance.theme.inc, line 379
theme registry and preprocess functions for the default templates

Code

function template_preprocess_google_appliance_keymatch(&$vars) {

  // Sanatize urls.
  $vars['url'] = check_url($vars['url']);
  $vars['description'] = filter_xss($vars['description'], array(
    'b',
    'strong',
  ));

  // Render template.
}