admin-menu-links.vars.php 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. /**
  3. * @file
  4. * Stub file for "admin_menu_links" theme hook [pre]process functions.
  5. */
  6. /**
  7. * Pre-processes variables for the "admin_menu_links" theme hook.
  8. *
  9. * @param array $variables
  10. * - elements: A renderable array of links using the following keys:
  11. * - #attributes: Optional array of attributes for the list item, processed
  12. * via drupal_attributes().
  13. * - #title: Title of the link, passed to l().
  14. * - #href: Optional path of the link, passed to l(). When omitted, the
  15. * element's '#title' is rendered without link.
  16. * - #description: Optional alternative text for the link, passed to l().
  17. * - #options: Optional alternative text for the link, passed to l().
  18. * The array key of each child element itself is passed as path for l().
  19. *
  20. * @see theme_admin_menu_links()
  21. *
  22. * @ingroup theme_preprocess
  23. */
  24. function bootstrap_preprocess_admin_menu_links(array &$variables) {
  25. $elements = &$variables['elements'];
  26. foreach (element_children($elements) as $child) {
  27. $elements[$child]['#bootstrap_ignore_pre_render'] = TRUE;
  28. $elements[$child]['#bootstrap_ignore_process'] = TRUE;
  29. }
  30. }