function forward_help in Forward 8.2
Same name and namespace in other branches
- 5 forward.module \forward_help()
- 4.x forward.module \forward_help()
- 4.0.x forward.module \forward_help()
Implements hook_help().
File
- ./
forward.module, line 19 - Allows forwarding of entities by email.
Code
function forward_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
case 'help.page.forward':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Adds a "forward this page" link to each node.') . '</p>';
$output .= '<p>' . t('This module allows users to email a specific node or other entity on your site to a friend.') . '</p>';
return $output;
default:
}
}