function textsize_preprocess_page in Text Size 6
Add body classes into the page template.
See also
File
- ./
textsize.module, line 119 - Display a text size changer on the page for a better web accessibility.
Code
function textsize_preprocess_page(&$variables) {
if (function_exists('textsize_get_current')) {
$variables['body_classes'] .= ' textsize-' . textsize_get_current($value = 'int');
}
}