You are here

function advpoll_help in Advanced Poll 6

Same name and namespace in other branches
  1. 5 advpoll.module \advpoll_help()
  2. 6.3 advpoll.module \advpoll_help()
  3. 6.2 advpoll.module \advpoll_help()

Implementation of hook_help().

File

./advpoll.module, line 23
Advanced Poll - a sophisticated polling module for voting, elections, and group decision-making.

Code

function advpoll_help($path, $arg) {
  switch ($path) {
    case 'admin/modules#description':
      return t('A sophisticated polling module for voting, elections, and group decision-making.');
      break;
  }
}