You are here

function countdown_help in Countdown 6

Same name and namespace in other branches
  1. 8 countdown.module \countdown_help()
  2. 5 countdown.module \countdown_help()
  3. 7.2 countdown.module \countdown_help()
  4. 7 countdown.module \countdown_help()

Describe the module in the HTML frontend

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("Don't forget to configure the event name and date in Administer/blocks/Countdown configure");
      break;
  }
  return $output;
}