media-library-wrapper.html.twig

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

Default theme implementation 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/modules/media_library/templates/media-library-wrapper.html.twig

View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation of a container used to wrap the media library's
  5. * modal dialog 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 }}>
  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.