You are here

function user_menu_avatar_preprocess_menu in User Menu Avatar (User Image in Menu) 8.4

Same name and namespace in other branches
  1. 8.5 user_menu_avatar.module \user_menu_avatar_preprocess_menu()

Implements hook_preprocess_hook().

@inheritdoc

File

./user_menu_avatar.module, line 219
Display user picture and/or user name in menu.

Code

function user_menu_avatar_preprocess_menu(&$variables) {

  // Loop through first menu level.
  foreach ($variables['items'] as &$key) {
    uma_apply_markup($variables, $key);
  }
}