You are here

function vud_help in Vote Up/Down 6.2

Same name and namespace in other branches
  1. 8 vud.module \vud_help()
  2. 6.3 vud.module \vud_help()
  3. 7.2 vud.module \vud_help()
  4. 7 vud.module \vud_help()

Implementation of hook_help().

File

./vud.module, line 27

Code

function vud_help($path, $arg) {
  switch ($path) {
    case 'admin/help#vud':
      $output = '<p>' . t('Provides a configurable up/down voting widget for other modules to use.') . '</p>';
      return $output;
  }
}