You are here

function advpoll_convert_view in Advanced Poll 6

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

File

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

Code

function advpoll_convert_view() {
  $output = '';
  $output .= drupal_get_form('advpoll_convert_form');
  return $output;
}