function forum_access_help in Forum Access 8
Implements hook_help().
@inheritdoc
File
- ./
forum_access.module, line 28 - Contains forum_access.module.
Code
function forum_access_help($route_name, RouteMatchInterface $route_match) {
$output = '';
switch ($route_name) {
// Main module help for the forum_access module.
case 'help.page.forum_access':
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Allows forums to be set private and to be given moderators.') . '</p>';
}
return $output;
}