function workbench_access_help in Workbench Access 8
Implements hook_help().
File
- ./
workbench_access.module, line 22 - Contains workbench_access.module.
Code
function workbench_access_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the workbench_access module.
case 'help.page.workbench_access':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Hierarchical access control module.') . '</p>';
return $output;
default:
}
}