media-library-item.html.twig
Same filename in this branch
Default theme implementation of a media library item.
This is used when displaying selected media items, either in the field widget or in the "Additional selected media" area when adding new media items in the media library modal dialog.
Available variables:
- attributes: HTML attributes for the containing element.
- content: The content of the media library item, plus any additional fields or elements surrounding it.
See also
template_preprocess_media_library_item()
2 theme calls to media-library-item.html.twig
- AddFormBase::buildSelectedItemElement in core/
modules/ media_library/ src/ Form/ AddFormBase.php - Returns a render array for a single pre-selected media item.
- MediaLibraryWidget::formElement in core/
modules/ media_library/ src/ Plugin/ Field/ FieldWidget/ MediaLibraryWidget.php - Returns the form for a single field widget.
File
-
core/
modules/ media_library/ templates/ media-library-item.html.twig
View source
- {#
- /**
- * @file
- * Default theme implementation of a media library item.
- *
- * This is used when displaying selected media items, either in the field
- * widget or in the "Additional selected media" area when adding new
- * media items in the media library modal dialog.
- *
- * Available variables:
- * - attributes: HTML attributes for the containing element.
- * - content: The content of the media library item, plus any additional
- * fields or elements surrounding it.
- *
- * @see template_preprocess_media_library_item()
- *
- * @ingroup themeable
- */
- #}
- <div{{ attributes }}>
- {{ content }}
- </div>
Related topics
- Theme system overview
- Functions and templates for the user interface that themes can override.