You are here

function advuser_filter_get_all in Advanced User 7.4

TODO.

2 calls to advuser_filter_get_all()
advuser_filter_set in ./advuser.module
TODO.
advuser_query_advuser_FILTER_QUERY_alter in ./advuser.module
Implements hook_query_TAG_alter().
1 string reference to 'advuser_filter_get_all'
advuser_menu in ./advuser.module
Implements hook_menu().

File

./advuser.module, line 131
advuser.module

Code

function advuser_filter_get_all($json = FALSE) {
  $output = $_SESSION['advuser_overview_filter'];
  if ($json !== FALSE) {
    drupal_json_output($output);
  }
  else {
    return $output;
  }
}