function advpoll_help in Advanced Poll 5
Same name and namespace in other branches
- 6.3 advpoll.module \advpoll_help()
- 6 advpoll.module \advpoll_help()
- 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($section) {
  switch ($section) {
    case 'admin/modules#description':
      return t('A sophisticated polling module for voting, elections, and group decision-making.');
      break;
  }
}