function workbench_moderation_help in Workbench Moderation 8.2
Same name and namespace in other branches
- 8 workbench_moderation.module \workbench_moderation_help()
- 7.3 workbench_moderation.module \workbench_moderation_help()
- 7 workbench_moderation.module \workbench_moderation_help()
Implements hook_help().
File
- ./
workbench_moderation.module, line 29 - Contains workbench_moderation.module.
Code
function workbench_moderation_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the workbench_moderation module.
case 'help.page.workbench_moderation':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Provides basic moderation for content') . '</p>';
return $output;
default:
}
}