function radioactivity_up_down_voting_help in Radioactivity 6
@file Up/down voting support for radioactivity
File
- plugins/
radioactivity_up_down_voting.module, line 7 - Up/down voting support for radioactivity
Code
function radioactivity_up_down_voting_help($path, $arg) {
$output = '';
switch ($path) {
case "admin/help#radioactivity_up_down_voting":
$output = '<p>' . t("VotingAPI vote up/down support for radioactivity. Provides adding energy based " . "on whether the vote was positive (vote up) or negative (vote down). This can be used to provide node or comment <em>hotness</em> " . "metrics based on user feedback.") . '</p>';
break;
}
return $output;
}