You are here

function countdown_help in Countdown 5

Same name and namespace in other branches
  1. 8 countdown.module \countdown_help()
  2. 6 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 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;
}