bootstrap-dropdown.func.php 266 B

1234567891011121314
  1. <?php
  2. /**
  3. * @file
  4. * Stub file for bootstrap_bootstrap_dropdown().
  5. */
  6. /**
  7. * Returns HTML for a Bootstrap dropdown component.
  8. *
  9. * @ingroup theme_functions
  10. */
  11. function bootstrap_bootstrap_dropdown($variables) {
  12. return drupal_render($variables['dropdown']);
  13. }