function timeago_help in Timeago 7
Same name and namespace in other branches
- 5 timeago.module \timeago_help()
- 6 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;
}