function pagestyle_preprocess_page in Page Style 6
Add body classes into the page template.
See also
File
- ./
pagestyle.module, line 124 - Display a style changer on the page and in the browser menu for a better web accessibility.
Code
function pagestyle_preprocess_page(&$variables) {
$pagestyle_browser_style_switcher = variable_get('pagestyle_browser_style_switcher', 0);
if (function_exists('pagestyle_get_current') && $pagestyle_browser_style_switcher == 0) {
$variables['body_classes'] .= ' pagestyle_' . pagestyle_get_current($value = 'int');
}
}