media--media-library.html.twig

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

Default theme implementation to present a media entity in the media library.

Available variables:

  • media: The entity with limited access to object properties and methods. Only method names starting with "get", "has", or "is" and a few common methods such as "id", "label", and "bundle" are available. For example:

    • entity.getEntityTypeId() will return the entity type ID.
    • entity.hasField('field_example') returns TRUE if the entity includes field_example. (This does not indicate the presence of a value in this field.)

    Calling other methods, such as entity.delete(), will result in an exception. See \Drupal\Core\Entity\EntityInterface for a full list of methods.

  • name: Name of the media.
  • content: Media content.
  • title_prefix: Additional output populated by modules, intended to be displayed in front of the main title tag that appears in the template.
  • title_suffix: Additional output populated by modules, intended to be displayed after the main title tag that appears in the template.
  • view_mode: View mode; for example, "teaser" or "full".
  • attributes: HTML attributes for the containing element.
  • title_attributes: Same as attributes, except applied to the main title tag that appears in the template.
  • url: Direct URL of the media.
  • preview_attributes: HTML attributes for the preview wrapper.
  • metadata_attributes: HTML attributes for the expandable metadata area.
  • status: Whether or not the Media is published.

See also

template_preprocess_media()

media_library_preprocess_media()

File

core/modules/media_library/templates/media--media-library.html.twig

View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation to present a media entity in the media library.
  5. *
  6. * Available variables:
  7. * - media: The entity with limited access to object properties and methods.
  8. * Only method names starting with "get", "has", or "is" and a few common
  9. * methods such as "id", "label", and "bundle" are available. For example:
  10. * - entity.getEntityTypeId() will return the entity type ID.
  11. * - entity.hasField('field_example') returns TRUE if the entity includes
  12. * field_example. (This does not indicate the presence of a value in this
  13. * field.)
  14. * Calling other methods, such as entity.delete(), will result in an exception.
  15. * See \Drupal\Core\Entity\EntityInterface for a full list of methods.
  16. * - name: Name of the media.
  17. * - content: Media content.
  18. * - title_prefix: Additional output populated by modules, intended to be
  19. * displayed in front of the main title tag that appears in the template.
  20. * - title_suffix: Additional output populated by modules, intended to be
  21. * displayed after the main title tag that appears in the template.
  22. * - view_mode: View mode; for example, "teaser" or "full".
  23. * - attributes: HTML attributes for the containing element.
  24. * - title_attributes: Same as attributes, except applied to the main title
  25. * tag that appears in the template.
  26. * - url: Direct URL of the media.
  27. * - preview_attributes: HTML attributes for the preview wrapper.
  28. * - metadata_attributes: HTML attributes for the expandable metadata area.
  29. * - status: Whether or not the Media is published.
  30. *
  31. * @see template_preprocess_media()
  32. * @see media_library_preprocess_media()
  33. *
  34. * @ingroup themeable
  35. */
  36. #}
  37. <article{{ attributes }}>
  38. {% if content %}
  39. <div{{ preview_attributes.addClass('js-media-library-item-preview') }}>
  40. {{ content|without('name') }}
  41. </div>
  42. {% if not status %}
  43. {{ "unpublished" | t }}
  44. {% endif %}
  45. <div{{ metadata_attributes }}>
  46. {{ name }}
  47. </div>
  48. {% endif %}
  49. </article>

Related topics


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