You are here

function radioactivity_comment_help in Radioactivity 6

File

plugins/radioactivity_comment.module, line 6

Code

function radioactivity_comment_help($path, $arg) {
  $output = '';
  switch ($path) {
    case "admin/help#radioactivity_comment":
      $output = '<p>' . t('This module provides radioactivity support for comments and respective views support. ' . 'This module is not useful by itself as this module provides no sources. ' . 'Consider radioactivity-votingapi or similar source provider for comments.') . '</p>';
      break;
  }
  return $output;
}