You are here

function calendar_help in Calendar 8.2

Same name and namespace in other branches
  1. 8 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()

Implements hook_help().

File

./calendar.module, line 13
Contains calendar.module.

Code

function calendar_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'help.page.calendar':
      $output = '';
      $output .= '<h3>' . t('Introduction') . '</h3>';
      $output .= '<p>' . t('The V2 version of Calendar for D8 is a near complete rewrite of the Calendar module.
      This module essentially provides views plugins for style, argument, pager and (header) area.
      It uses default row plugins, e.g. fields or entities with view modes.') . '</p>';
      return $output;
  }
}