You are here

function calendar_help in Calendar 8

Same name and namespace in other branches
  1. 8.2 calendar.module \calendar_help()
  2. 5.2 calendar.module \calendar_help()
  3. 5 calendar.module \calendar_help()
  4. 6.2 calendar.module \calendar_help()
  5. 7.3 calendar.module \calendar_help()
  6. 7 calendar.module \calendar_help()
  7. 7.2 calendar.module \calendar_help()

Implementation of hook_help().

File

./calendar.module, line 98

Code

function calendar_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'help.page.calendar':
      return '<p>' . t('View complete documentation at <a href=":link">Date and Calendar Documentation</a>.', [
        ':link' => 'http://drupal.org/node/262062',
      ]) . '</p>';
  }
}