function google_calendar_block_help in Google Calendar Block 7
Same name and namespace in other branches
- 7.2 google_calendar_block.module \google_calendar_block_help()
Implements hook_help().
File
- ./
google_calendar_block.module, line 62 - A module to provide simple Google Calendar blocks using the Google Data APIs.
Code
function google_calendar_block_help($path, $arg) {
switch ($path) {
case 'admin/structure/block/add-google-calendar-block':
return '<p>' . t('Use this page to create a new custom Google Calendar block.') . '</p>';
}
}