You are here

function radioactivity_fivestar_voting_help in Radioactivity 6

Implement hook_help().

File

plugins/radioactivity_fivestar_voting.module, line 11
Fivestar voting support for radioactivity

Code

function radioactivity_fivestar_voting_help($path, $arg) {
  $output = '';
  switch ($path) {
    case "admin/help#radioactivity_fivestar_voting":
      $output = '<p>' . t("VotingAPI vote Fivestar support for radioactivity. Provides adding energy based " . "on how many stars the vote was.") . '</p>';
      break;
  }
  return $output;
}