You are here

function calendar_help in Calendar 7.2

Same name and namespace in other branches
  1. 8.2 calendar.module \calendar_help()
  2. 8 calendar.module \calendar_help()
  3. 5.2 calendar.module \calendar_help()
  4. 5 calendar.module \calendar_help()
  5. 6.2 calendar.module \calendar_help()
  6. 7.3 calendar.module \calendar_help()
  7. 7 calendar.module \calendar_help()

Implementation of hook_help().

File

./calendar.module, line 24
Adds calendar filtering and displays to Views.

Code

function calendar_help($section, $arg) {
  switch ($section) {
    case 'admin/help#calendar':
      return t("<p>View complete documentation at !link.</p>", array(
        '!link' => 'http://drupal.org/node/120710',
      ));
  }
}