Projet

Général

Profil

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

root / drupal7 / sites / all / themes / bootstrap / theme / system / button.vars.php @ 87dbc3bf

1
<?php
2
/**
3
 * @file
4
 * button.vars.php
5
 */
6

    
7
/**
8
 * Implements hook_preprocess_button().
9
 */
10
function bootstrap_preprocess_button(&$vars) {
11
  $vars['element']['#attributes']['class'][] = 'btn';
12
  if (isset($vars['element']['#value'])) {
13
    if ($class = _bootstrap_colorize_button($vars['element']['#value'])) {
14
      $vars['element']['#attributes']['class'][] = $class;
15
    }
16
  }
17
}