function calendar_systems_help in Calendar Systems 7
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.3 calendar_systems.module \calendar_systems_help()
- 7.2 calendar_systems.module \calendar_systems_help()
Implements hook_help().
File
- ./
calendar_systems.module, line 12 - Contains Calendar Systems hook implementations and helpers.
Code
function calendar_systems_help($path, $arg) {
switch ($path) {
case 'admin/help#calendar-systems':
// Return a line-break version of the module README.txt.
return check_markup(file_get_contents(dirname(__FILE__) . "/README.txt"));
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;
}
}