function calendar_help in Calendar 8
Same name and namespace in other branches
- 8.2 calendar.module \calendar_help()
- 5.2 calendar.module \calendar_help()
- 5 calendar.module \calendar_help()
- 6.2 calendar.module \calendar_help()
- 7.3 calendar.module \calendar_help()
- 7 calendar.module \calendar_help()
- 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>';
}
}