You are here

function timeago_help in Timeago 6

Same name and namespace in other branches
  1. 5 timeago.module \timeago_help()
  2. 7 timeago.module \timeago_help()

Display help and module information

Parameters

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

Return value

help text for section

File

./timeago.module, line 8

Code

function timeago_help($section = '') {
  $output = '';
  switch ($section) {
    case "admin/help#description":
      $output = t("Displays a date in a 'x time ago' kind of way");
      break;
  }
  return $output;
}