theme_poll_view_voting
- Versions
- 4.7 – 5
theme_poll_view_voting($form)
Themes the voting form for a poll.
Code
modules/poll/poll.module, line 391
<?php
function theme_poll_view_voting($form) {
$output .= '<div class="poll">';
$output .= ' <div class="vote-form">';
$output .= ' <div class="choices">';
$output .= drupal_render($form['choice']);
$output .= ' </div>';
$output .= drupal_render($form['nid']);
$output .= drupal_render($form['vote']);
$output .= ' </div>';
$output .= drupal_render($form);
$output .= '</div>';
return $output;
}
?>Login or register to post comments 