function theme_advpoll_voting_binary_form in Advanced Poll 5
Render the voting form.
File
- modes/
binary.inc, line 295
Code
function theme_advpoll_voting_binary_form($form) {
$message = drupal_render($form['message']);
$output = "<div class=\"poll\">\n";
$output .= drupal_render($form);
if ($message) {
$output .= "<p class=\"message\">{$message}</p>\n";
}
$output .= "</div>\n";
return $output;
}