root / drupal7 / sites / all / themes / bootstrap / templates / system / fieldset.func.php @ 1f623f01
1 |
<?php
|
---|---|
2 |
/**
|
3 |
* @file
|
4 |
* Stub file for bootstrap_fieldset().
|
5 |
*/
|
6 |
|
7 |
/**
|
8 |
* Returns HTML for a fieldset form element and its children.
|
9 |
*
|
10 |
* @param array $variables
|
11 |
* An associative array containing:
|
12 |
* - element: An associative array containing the properties of the element.
|
13 |
* Properties used: #attributes, #children, #collapsed, #collapsible,
|
14 |
* #description, #id, #title, #value.
|
15 |
*
|
16 |
* @return string
|
17 |
* The constructed HTML.
|
18 |
*
|
19 |
* @see theme_fieldset()
|
20 |
*
|
21 |
* @ingroup theme_functions
|
22 |
*/
|
23 |
function bootstrap_fieldset($variables) { |
24 |
return theme('bootstrap_panel', $variables); |
25 |
} |