You are here

function visitors_help in Visitors 8

Same name and namespace in other branches
  1. 8.2 visitors.module \visitors_help()
  2. 7.2 visitors.module \visitors_help()
  3. 7 visitors.module \visitors_help()
  4. 7.0 visitors.module \visitors_help()

Implements of hook_help().

File

./visitors.module, line 14

Code

function visitors_help($section) {
  switch ($section) {
    case 'visitors':
      return t('Visitors info.');
    default:
      return '';
  }
}