You are here

function date_ical_help in Date iCal 7.3

Implements hook_help().

File

./date_ical.module, line 178
Adds ical functionality to Views, and an iCal parser to Feeds.

Code

function date_ical_help($path, $arg) {
  switch ($path) {
    case 'admin/help#date_ical':
      return '<pre>' . file_get_contents(drupal_get_path('module', 'date_ical') . "/README.txt") . '</pre>';
  }
}