function countdown_help in Countdown 5
Same name and namespace in other branches
- 8 countdown.module \countdown_help()
- 6 countdown.module \countdown_help()
- 7.2 countdown.module \countdown_help()
- 7 countdown.module \countdown_help()
Describe the module in the HTML frontend
Parameters
string $section:
Return value
string
File
- ./
countdown.module, line 13
Code
function countdown_help($section) {
$output = '';
switch ($section) {
case 'admin/help#countdown':
$output = t("Don't forget to configure the event name and date in Administer/blocks/Countdown configure");
break;
}
return $output;
}