You are here

function _high_contrast_variable_get in High contrast 7

Same name and namespace in other branches
  1. 6 high_contrast.module \_high_contrast_variable_get()

Wrapper for variable_get().

4 calls to _high_contrast_variable_get()
high_contrast_init in ./high_contrast.module
Implements hook_init().
high_contrast_settings_form in ./high_contrast.module
Settings form.
theme_high_contrast_switcher_links in ./high_contrast.module
Get HTML for switcher links().
_high_contrast_get_current_css_styles in ./high_contrast.module
Get default css styles if none exist yet.

File

./high_contrast.module, line 392
High Contrast main module file.

Code

function _high_contrast_variable_get($var) {
  return variable_get($var, '');
}