function content_moderation_notifications_help in Content Moderation Notifications 8.3
Implements hook_help().
File
- ./
content_moderation_notifications.module, line 109 - Hook implementations for the content moderation notifications module.
Code
function content_moderation_notifications_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
case 'help.page.content_moderation_notifications':
$output = '';
$output .= '<h3>' . t("Introduction") . '</h3>';
$output .= '<p>' . t("The Content Moderation Notifications module allows\n notifications to be sent to all users of a particular role, or to the\n content's author when a piece of content is transitioned from one state\n to another via core's Content Moderation module.") . '</p>';
return $output;
}
}