function claro_preprocess_links__media_library_menu
Same name in other branches
- 10 core/themes/claro/claro.theme \claro_preprocess_links__media_library_menu()
- 11.x core/themes/claro/claro.theme \claro_preprocess_links__media_library_menu()
Implements hook_preprocess_links__media_library_menu().
This targets the menu of available media types in the media library's modal dialog.
@todo Do this in the relevant template once https://www.drupal.org/project/drupal/issues/3088856 is resolved.
File
-
core/
themes/ claro/ claro.theme, line 1513
Code
function claro_preprocess_links__media_library_menu(array &$variables) {
foreach ($variables['links'] as &$link) {
// Add a class to the Media Library menu items.
$link['attributes']->addClass('media-library-menu__item');
// This conditional exists because the media-library-menu__link class is
// currently added by Classy, but Claro will eventually not use Classy as a
// base theme.
// @todo remove conditional, keep class addition in
// https://drupal.org/node/3110137
// @see classy_preprocess_links__media_library_menu()
if (!isset($link['link']['#options']['attributes']['class']) || !in_array('media-library-menu__link', $link['link']['#options']['attributes']['class'])) {
$link['link']['#options']['attributes']['class'][] = 'media-library-menu__link';
}
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.