You are here

function textsize_init in Text Size 5

Same name and namespace in other branches
  1. 6 textsize.module \textsize_init()
  2. 7 textsize.module \textsize_init()

Implement hook_init().

File

./textsize.module, line 349
Display a text size changer on the page for a better web accessibility.

Code

function textsize_init() {

  // Execute the defined functions.
  if (function_exists('drupal_set_html_head')) {
    textsize_print_html();
  }
  if (function_exists('drupal_add_js')) {
    textsize_print_js_css();
    textsize_jq_cookie();
  }
  textsize_check();
}