Projet

Général

Profil

Paste
Télécharger (456 octets) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / themes / bootstrap / templates / system / progress-bar.vars.php @ 7547bb19

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'] = filter_xss_admin($variables['message']);
19
}