function counter_help in Counter 6
Same name and namespace in other branches
- 8 counter.module \counter_help()
- 5 counter.module \counter_help()
- 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';
}
}