image-widget.html.twig
Theme override for an image field widget.
Available variables:
- attributes: HTML attributes for the containing element.
- data: Render elements of the image widget.
See also
\Drupal\image\Hook\ImageThemeHooks::preprocessImageWidget()
File
- 
              core/profiles/ demo_umami/ themes/ umami/ templates/ classy/ content-edit/ image-widget.html.twig 
View source
- {#
- /**
-  * @file
-  * Theme override for an image field widget.
-  *
-  * Available variables:
-  * - attributes: HTML attributes for the containing element.
-  * - data: Render elements of the image widget.
-  *
-  * @see \Drupal\image\Hook\ImageThemeHooks::preprocessImageWidget()
-  */
- #}
- <div{{ attributes }}>
-   {% if data.preview %}
-     <div class="image-preview">
-       {{ data.preview }}
-     </div>
-   {% endif %}
-   <div class="image-widget-data">
-     {# Render widget data without the image preview that was output already. #}
-     {{ data|without('preview') }}
-   </div>
- </div>
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
