function vote_up_down_help in Vote Up/Down 6
Same name and namespace in other branches
- 5 vote_up_down.module \vote_up_down_help()
Implementation of hook_help().
File
- ./
vote_up_down.module, line 19
Code
function vote_up_down_help($path, $arg) {
switch ($path) {
case 'admin/help#vote_up_down':
$output .= '<p>' . t('This module can be used to add an up/down voting widget to selected node types and comments.') . '</p>';
return $output;
}
}