function fullcalendar_help in FullCalendar 8
Same name and namespace in other branches
- 8.5 fullcalendar.module \fullcalendar_help()
- 8.2 fullcalendar.module \fullcalendar_help()
- 8.3 fullcalendar.module \fullcalendar_help()
- 8.4 fullcalendar.module \fullcalendar_help()
Implements hook_help().
File
- ./
fullcalendar.module, line 22 - Provides a views style plugin for FullCalendar
Code
function fullcalendar_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
case 'help.page.fullcalendar':
$output = '';
$output .= '<h3>' . t('Fullcalendar') . '</h3>';
$output .= '<p>' . t('The Fullcalendar module is an integration of the <a href="!fullcalendar-uri">Adam Shaw\'s FullCalendar jQuery plugin</a> with Drupal.', [
'!fullcalendar-uri' => Url::fromUri('https://github.com/arshaw/fullcalendar'),
]) . '</p>';
return $output;
}
}