You are here

function _textsize_set_session in Text Size 7

Helper function to set determine if a session value should be set.

2 calls to _textsize_set_session()
textsize_block_view in ./textsize.module
Implement hook_block_view().
textsize_check in ./textsize.module
Check the cookie "textsize" value of changing (bye JavaScript) for anonymus user.

File

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

Code

function _textsize_set_session() {
  return variable_get('textsize_set_anonymous_session', 1) || !user_is_anonymous();
}