Projet

Général

Profil

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

root / drupal7 / sites / all / themes / bootstrap / templates / bootstrap / bootstrap-dropdown.func.php @ eefc2ac0

1
<?php
2

    
3
/**
4
 * @file
5
 * Stub file for bootstrap_bootstrap_dropdown().
6
 */
7

    
8
/**
9
 * Returns HTML for a Bootstrap dropdown component.
10
 *
11
 * @param array $variables
12
 *   An associative array of variables.
13
 *
14
 * @return string
15
 *   The constructed HTML markup.
16
 *
17
 * @ingroup theme_functions
18
 */
19
function bootstrap_bootstrap_dropdown(array $variables) {
20
  return drupal_render($variables['dropdown']);
21
}