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