File
- modules/poll/poll.module, line 454
- Enables your site to capture votes on different topics in the form of multiple
choice questions.
Code
function theme_poll_bar($title, $percentage, $votes, $block) {
if ($block) {
$output = '<div class="text">' . $title . '</div>';
$output .= '<div class="bar"><div style="width: ' . $percentage . '%;" class="foreground"></div></div>';
$output .= '<div class="percent">' . $percentage . '%</div>';
}
else {
$output = '<div class="text">' . $title . '</div>';
$output .= '<div class="bar"><div style="width: ' . $percentage . '%;" class="foreground"></div></div>';
$output .= '<div class="percent">' . $percentage . '% (' . $votes . ')</div>';
}
return $output;
}
Login or
register to post comments