function pagestyle_init in Page Style 5
Same name and namespace in other branches
- 6 pagestyle.module \pagestyle_init()
- 7 pagestyle.module \pagestyle_init()
Implement hook_init().
File
- ./
pagestyle.module, line 365 - Display a style changer on the page and in the browser menue for a better web accessibility.
Code
function pagestyle_init() {
// Execute the defined functions.
if (function_exists('drupal_set_html_head')) {
pagestyle_print_html();
}
if (function_exists('drupal_add_js')) {
pagestyle_print_js_css();
pagestyle_jq_cookie();
}
pagestyle_check();
}