You are here

function views_field_tooltip_preprocess_html in Views Field Tooltip 7

Template preprocessor for `theme_html`.

File

./views_field_tooltip.module, line 837
Shows tooltips on Views fields and labels.

Code

function views_field_tooltip_preprocess_html(&$variables) {
  if (!empty($_GET['ajax'])) {
    $template = !empty($_GET['true_ajax']) ? 'html__true_ajax' : 'html__ajax';
    $variables['theme_hook_suggestions'][] = $template;
  }
}