You are here

function bootstrap_menu_items_preprocess_menu in Bootstrap menu items 8.3

Implementation of hook_preprocess_HOOK().

File

./bootstrap_menu_items.module, line 54
Drupal Module: Bootstrap menu items.

Code

function bootstrap_menu_items_preprocess_menu(&$variables) {
  foreach ($variables['items'] as $menu_link_key => &$menu_link) {
    bootstrap_menu_items_preprocess_menu_link($menu_link);
  }
}