You are here

function vote_up_down_help in Vote Up/Down 5

Same name and namespace in other branches
  1. 6 vote_up_down.module \vote_up_down_help()

Implementation of hook_help().

File

./vote_up_down.module, line 21
vote_up_down is a module that adds a widget for +1/-1 votes on nodes. It depends upon Voting API. It's based upon "simplevote.module".

Code

function vote_up_down_help($section) {
  switch ($section) {
    case 'admin/help#vote_up_down':
      return t('<p>This module is used to add a up/down vote widget to selected node types, part of Vote up/down.</p>');
  }
}