function calendar_link_help in Calendar Link 8
Same name and namespace in other branches
- 2.x calendar_link.module \calendar_link_help()
Implements hook_help().
File
- ./
calendar_link.module, line 13 - Hooks for the Calendar Link module.
Code
function calendar_link_help($route_name, RouteMatchInterface $route_match) {
$output = '';
switch ($route_name) {
case 'help.page.calendar_link':
$output = check_markup(file_get_contents(dirname(__FILE__) . '/README.md'));
}
return $output;
}