You are here

function counter_help in Counter 5

Same name and namespace in other branches
  1. 8 counter.module \counter_help()
  2. 6 counter.module \counter_help()
  3. 7 counter.module \counter_help()

Implementation of hook_help().

File

./counter.module, line 11
The counter module used for displaying Site Counter.

Code

function counter_help($section) {
  switch ($section) {
    case 'admin/help#Counter':
      $output = "The counter module used for displaying Site Counter.";
      return $output;
    case 'admin/modules#description':
      return 'The counter module used for displaying Site Counter';
  }
}