function vud_help in Vote Up/Down 7
Same name and namespace in other branches
- 8 vud.module \vud_help()
- 6.3 vud.module \vud_help()
- 6.2 vud.module \vud_help()
- 7.2 vud.module \vud_help()
Implementation of hook_help().
File
- ./
vud.module, line 66 - Implements the core voting module on top of Voting API.
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;
}
}