function calendar_help in Calendar 5
Same name and namespace in other branches
- 8.2 calendar.module \calendar_help()
- 8 calendar.module \calendar_help()
- 5.2 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 10 - Adds calendar filtering and displays to Views.
Code
function calendar_help($section) {
switch ($section) {
case 'admin/help#calendar':
return t("<p>View complete documentation at !link.</p>", array(
'!link' => 'http://drupal.org/node/120710',
));
}
}