You are here

function pagestyle_preprocess_html in Page Style 7

Add body classes into the html template.

See also

template_preprocess_html()

File

./pagestyle.module, line 147
Display a style changer on the page and in the browser menu for a better web accessibility.

Code

function pagestyle_preprocess_html(&$variables) {
  $pagestyle_browser_style_switcher = variable_get('pagestyle_browser_style_switcher', 0);
  if (function_exists('pagestyle_get_current') && $pagestyle_browser_style_switcher == 0) {
    $variables['classes_array'][] = ' pagestyle_' . pagestyle_get_current($value = 'int');
  }
}