You are here

function jcalendar_help in Calendar 6.2

Same name and namespace in other branches
  1. 5.2 jcalendar/jcalendar.module \jcalendar_help()

Display help and module information

Parameters

section which section of the site we're displaying help:

Return value

help text for section

File

jcalendar/jcalendar.module, line 13
jQuery Calendar UI features.

Code

function jcalendar_help($path, $arg) {
  $output = '';
  switch ($path) {
    case "admin/help#jcalendar":
      $output = '<p>' . t("Creates a popup for calendar dates.") . '</p>';
      break;
  }
  return $output;
}