/** * Display help and module information * @param path which path of the site we're displaying help * @param arg array that holds the current path as would be returned from arg() function * @return help text for the path */ function module_help($path, $arg) { $output = ''; //declare your output variable switch ($path) { case "admin/help#module": $output = '
'. t("Displays links to nodes created on this date") .'
'; break; } return $output; } ?>