fieldset.func.php 594 B

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