theme_poll_bar

5 poll.module theme_poll_bar($title, $percentage, $votes, $block)
6 theme.php theme_poll_bar()
7 theme.php theme_poll_bar($variables)
8 theme.php theme_poll_bar($variables)

1 theme call to theme_poll_bar()

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