media-library-wrapper.html.twig

Same filename in this branch
  1. 11.x core/profiles/demo_umami/themes/umami/templates/classy/media-library/media-library-wrapper.html.twig
  2. 11.x core/themes/stable9/templates/media-library/media-library-wrapper.html.twig
  3. 11.x core/modules/media_library/templates/media-library-wrapper.html.twig
Same filename and directory in other branches
  1. 9 core/profiles/demo_umami/themes/umami/templates/classy/media-library/media-library-wrapper.html.twig
  2. 9 core/themes/stable9/templates/media-library/media-library-wrapper.html.twig
  3. 9 core/themes/seven/templates/classy/media-library/media-library-wrapper.html.twig
  4. 9 core/themes/claro/templates/classy/media-library/media-library-wrapper.html.twig
  5. 9 core/themes/bartik/templates/classy/media-library/media-library-wrapper.html.twig
  6. 9 core/themes/stable/templates/media-library/media-library-wrapper.html.twig
  7. 9 core/themes/classy/templates/media-library/media-library-wrapper.html.twig
  8. 9 core/modules/media_library/templates/media-library-wrapper.html.twig
  9. 8.9.x core/profiles/demo_umami/themes/umami/templates/classy/media-library/media-library-wrapper.html.twig
  10. 8.9.x core/themes/seven/templates/classy/media-library/media-library-wrapper.html.twig
  11. 8.9.x core/themes/claro/templates/classy/media-library/media-library-wrapper.html.twig
  12. 8.9.x core/themes/bartik/templates/classy/media-library/media-library-wrapper.html.twig
  13. 8.9.x core/themes/stable/templates/media-library/media-library-wrapper.html.twig
  14. 8.9.x core/themes/classy/templates/media-library/media-library-wrapper.html.twig
  15. 8.9.x core/modules/media_library/templates/media-library-wrapper.html.twig
  16. 10 core/profiles/demo_umami/themes/umami/templates/classy/media-library/media-library-wrapper.html.twig
  17. 10 core/themes/stable9/templates/media-library/media-library-wrapper.html.twig
  18. 10 core/themes/claro/templates/classy/media-library/media-library-wrapper.html.twig
  19. 10 core/modules/media_library/templates/media-library-wrapper.html.twig

Theme override of a container used to wrap the media library's modal dialog interface.

Available variables:

  • attributes: HTML attributes for the containing element.
  • menu: The menu of available media types to choose from.
  • content: The form to add new media items, followed by the grid or table of existing media items to choose from.

See also

template_preprocess_media_library_wrapper()

1 theme call to media-library-wrapper.html.twig
MediaLibraryUiBuilder::buildUi in core/modules/media_library/src/MediaLibraryUiBuilder.php
Build the media library UI.

File

core/themes/claro/templates/classy/media-library/media-library-wrapper.html.twig

View source
  1. {#
  2. /**
  3. * @file
  4. * Theme override of a container used to wrap the media library's modal dialog
  5. * interface.
  6. *
  7. * Available variables:
  8. * - attributes: HTML attributes for the containing element.
  9. * - menu: The menu of available media types to choose from.
  10. * - content: The form to add new media items, followed by the grid or table of
  11. * existing media items to choose from.
  12. *
  13. * @see template_preprocess_media_library_wrapper()
  14. *
  15. * @ingroup themeable
  16. */
  17. #}
  18. <div{{ attributes.addClass('media-library-wrapper') }}>
  19. {{ menu }}
  20. {{ content }}
  21. </div>

Related topics


Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.