You are here

function advpoll_convert_help in Advanced Poll 6.3

Same name and namespace in other branches
  1. 5 advpoll_convert.module \advpoll_convert_help()
  2. 6 advpoll_convert.module \advpoll_convert_help()
  3. 6.2 advpoll_convert.module \advpoll_convert_help()

Implementation of hook_help().

File

./advpoll_convert.module, line 11
Converts a site's standard Drupal polls into Advanced Poll polls.

Code

function advpoll_convert_help($path, $arg) {
  switch ($path) {
    case 'admin/modules#description':
      return t("Converts a site's standard Drupal polls into Advanced Poll polls.");
      break;
  }
}