Projet

Général

Profil

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

root / drupal7 / sites / all / themes / bootstrap / templates / system / fieldset.func.php @ eefc2ac0

1
<?php
2

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

    
8
/* @noinspection PhpDocMissingThrowsInspection */
9

    
10
/**
11
 * Returns HTML for a fieldset form element and its children.
12
 *
13
 * @param array $variables
14
 *   An associative array containing:
15
 *   - element: An associative array containing the properties of the element.
16
 *     Properties used: #attributes, #children, #collapsed, #collapsible,
17
 *     #description, #id, #title, #value.
18
 *
19
 * @return string
20
 *   The constructed HTML.
21
 *
22
 * @see theme_fieldset()
23
 *
24
 * @ingroup theme_functions
25
 */
26
function bootstrap_fieldset(array $variables) {
27
  /* @noinspection PhpUnhandledExceptionInspection */
28
  return theme('bootstrap_panel', $variables);
29
}