Same name and namespace in other branches
  1. 4.7.x includes/theme.inc \theme_progress_bar()
  2. 5.x includes/theme.inc \theme_progress_bar()
  3. 6.x includes/theme.inc \theme_progress_bar()

Returns HTML for a progress bar.

Note that the core Batch API uses this only for non-JavaScript batch jobs.

Parameters

$variables: An associative array containing:

  • percent: The percentage of the progress.
  • message: A string containing information to be displayed.

Related topics

1 theme call to theme_progress_bar()
_batch_progress_page in includes/batch.inc
Outputs a batch processing page.

File

includes/theme.inc, line 2393
The theme system, which controls the output of Drupal.

Code

function theme_progress_bar($variables) {
  $output = '<div id="progress" class="progress">';
  $output .= '<div class="bar"><div class="filled" style="width: ' . $variables['percent'] . '%"></div></div>';
  $output .= '<div class="percentage">' . $variables['percent'] . '%</div>';
  $output .= '<div class="message">' . $variables['message'] . '</div>';
  $output .= '</div>';
  return $output;
}