function textsize_init in Text Size 7
Same name and namespace in other branches
- 5 textsize.module \textsize_init()
- 6 textsize.module \textsize_init()
Implement hook_init().
File
- ./
textsize.module, line 384 - Display a text size changer on the page for a better web accessibility.
Code
function textsize_init() {
if (function_exists('variable_get')) {
$textsize_javascript = variable_get('textsize_javascript', 1);
if ($textsize_javascript == 0 || $textsize_javascript == 1) {
textsize_check();
}
}
}