root / drupal7 / sites / all / themes / bootstrap / templates / system / progress-bar.vars.php @ 1f623f01
1 |
<?php
|
---|---|
2 |
/**
|
3 |
* @file
|
4 |
* Stub file for "progress_bar" theme hook [pre]process functions.
|
5 |
*/
|
6 |
|
7 |
/**
|
8 |
* Processes variables for the "progress_bar" theme hook.
|
9 |
*
|
10 |
* See template for list of available variables.
|
11 |
*
|
12 |
* @see progress-bar.tpl.php
|
13 |
*
|
14 |
* @ingroup theme_process
|
15 |
*/
|
16 |
function bootstrap_process_progress_bar(&$variables) { |
17 |
$variables['percent'] = check_plain($variables['percent']); |
18 |
$variables['message'] = _bootstrap_filter_xss($variables['message']); |
19 |
} |