You are here

function calendar_systems_date_properties_help in Calendar Systems 8

Same name and namespace in other branches
  1. 7 calendar_systems_date_properties/calendar_systems_date_properties.module \calendar_systems_date_properties_help()
  2. 7.2 calendar_systems_date_properties/calendar_systems_date_properties.module \calendar_systems_date_properties_help()

Implements hook_help().

File

calendar_systems_date_properties/calendar_systems_date_properties.module, line 11
Contains hook implementations and helpers.

Code

function calendar_systems_date_properties_help($path, $arg) {
  switch ($path) {
    case 'admin/config/regionals/calendar-systems/date_properties':
      $output = '<p>' . t('Configure Date Properties.') . '</p>';
      return $output;
  }
}