You are here

function forward_help in Forward 4.x

Same name and namespace in other branches
  1. 8.2 forward.module \forward_help()
  2. 5 forward.module \forward_help()
  3. 4.0.x forward.module \forward_help()

Implements hook_help().

File

./forward.module, line 15
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 pages.') . '</p>';
      $output .= '<p>' . t('This module allows users to email a page on your site to a friend.') . '</p>';
      return $output;
    default:
  }
}