function vud_help in Vote Up/Down 8
Same name and namespace in other branches
- 6.3 vud.module \vud_help()
- 6.2 vud.module \vud_help()
- 7.2 vud.module \vud_help()
- 7 vud.module \vud_help()
Implementation of hook_help().
File
- ./
vud.module, line 47 - Implements the core voting module on top of Voting API.
Code
function vud_help($path, $arg) {
switch ($path) {
case 'admin.page.vud':
$output = '<p>' . t('Provides a configurable up/down voting widget for other modules to use.') . '</p>';
return $output;
default:
return FALSE;
break;
}
}