function advpoll_help in Advanced Poll 6.3
Same name and namespace in other branches
- 5 advpoll.module \advpoll_help()
- 6 advpoll.module \advpoll_help()
- 6.2 advpoll.module \advpoll_help()
Implementation of hook_help().
File
- ./
advpoll.module, line 20 - 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;
}
}