You are here

function workbench_access_sections in Workbench Access 7

Show user sections.

1 string reference to 'workbench_access_sections'
workbench_access_menu in ./workbench_access.module
Implements hook_menu().

File

./workbench_access.admin.inc, line 506
Workbench Access admin file.

Code

function workbench_access_sections() {
  global $user;
  $account = $user;
  if (!isset($account->workbench_access)) {
    workbench_access_user_load_data($account);
  }
  return drupal_get_form('workbench_access_user_form', $account);
}