media.html.twig

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

Default theme implementation to present a media item.

Available variables:

  • media: The media item, 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 item.
  • 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.

See also

template_preprocess_media()

File

core/modules/media/templates/media.html.twig

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

Related topics


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