You are here

function advpoll_convert_help in Advanced Poll 5

Same name and namespace in other branches
  1. 6.3 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 6

Code

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