function countdown_help in Countdown 7.2
Same name and namespace in other branches
- 8 countdown.module \countdown_help()
- 5 countdown.module \countdown_help()
- 6 countdown.module \countdown_help()
- 7 countdown.module \countdown_help()
Implement hook_help().
Parameters
string $section:
Return value
string
File
- ./
countdown.module, line 14 - Count to, or from, a specified date and display the output in a block
Code
function countdown_help($path, $arg) {
$output = '';
switch ($path) {
case 'admin/help#countdown':
$output = t("Provides a Boxes plugin showing a countdown, with pluggable JS implementations.");
break;
}
return $output;
}