You are here

function calendar_systems_help in Calendar Systems 7.2

Same name and namespace in other branches
  1. 8 calendar_systems.module \calendar_systems_help()
  2. 6.3 calendar_systems.module \calendar_systems_help()
  3. 6 calendar_systems.module \calendar_systems_help()
  4. 7.3 calendar_systems.module \calendar_systems_help()
  5. 7 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;
  }
}