function i18n_preprocess_html in Internationalization 7
Implements hook_preprocess_html().
File
- ./
i18n.module, line 336 - Internationalization (i18n) module.
Code
function i18n_preprocess_html(&$variables) {
global $language;
$variables['classes_array'][] = 'i18n-' . $language->language;
}