fieldset.func.php 706 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. /**
  3. * @file
  4. * Stub file for bootstrap_fieldset().
  5. */
  6. /* @noinspection PhpDocMissingThrowsInspection */
  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(array $variables) {
  24. /* @noinspection PhpUnhandledExceptionInspection */
  25. return theme('bootstrap_panel', $variables);
  26. }