function calendar_systems_help in Calendar Systems 7.3
Same name and namespace in other branches
- 8 calendar_systems.module \calendar_systems_help()
- 6.3 calendar_systems.module \calendar_systems_help()
- 6 calendar_systems.module \calendar_systems_help()
- 7 calendar_systems.module \calendar_systems_help()
- 7.2 calendar_systems.module \calendar_systems_help()
Implements hook_help().
File
- ./
calendar_systems.module, line 11 - Contains Calendar Systems hook implementations and helpers.
Code
function calendar_systems_help($path, $arg) {
switch ($path) {
case 'admin/config/regionals/calendar-systems':
$output = '<p>' . t('Using the following form you can assign a different calendar system to each language and also select the default calendar system.') . '</p>';
return $output;
}
}