You are here

function textsize_init in Text Size 6

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

Implement hook_init().

File

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

Code

function textsize_init() {

  // Execute the defined functions.
  textsize_print_html();
  textsize_print_js_css();
  textsize_jq_plugin();
  if (function_exists('variable_get')) {
    $textsize_javascript = variable_get('textsize_javascript', 1);
    if ($textsize_javascript == 0 || $textsize_javascript == 1) {
      textsize_check();
    }
  }
}