function workbench_access_admin_paths in Workbench Access 7
Implements hook_admin_paths().
File
- ./
workbench_access.module, line 231 - Workbench Access module file.
Code
function workbench_access_admin_paths() {
$paths = array(
'user/*/sections' => TRUE,
'user/*/workbench_access' => TRUE,
);
return $paths;
}