image-resize-summary.html.twig

Same filename in this branch
  1. 8.9.x core/modules/image/templates/image-resize-summary.html.twig
Same filename and directory in other branches
  1. 9 core/themes/stable9/templates/admin/image-resize-summary.html.twig
  2. 9 core/themes/stable/templates/admin/image-resize-summary.html.twig
  3. 9 core/modules/image/templates/image-resize-summary.html.twig
  4. 10 core/themes/stable9/templates/admin/image-resize-summary.html.twig
  5. 10 core/modules/image/templates/image-resize-summary.html.twig
  6. 11.x core/themes/stable9/templates/admin/image-resize-summary.html.twig
  7. 11.x core/modules/image/templates/image-resize-summary.html.twig

Theme override for a summary of an image resize effect.

Available variables:

  • data: The current configuration for this resize effect, including:

    • width: The width of the resized image.
    • height: The height of the resized image.
  • effect: The effect information, including:
    • id: The effect identifier.
    • label: The effect name.
    • description: The effect description.
1 theme call to image-resize-summary.html.twig
ResizeImageEffect::getSummary in core/modules/image/src/Plugin/ImageEffect/ResizeImageEffect.php
Returns a render array summarizing the configuration of the image effect.

File

core/themes/stable/templates/admin/image-resize-summary.html.twig

View source
  1. {#
  2. /**
  3. * @file
  4. * Theme override for a summary of an image resize effect.
  5. *
  6. * Available variables:
  7. * - data: The current configuration for this resize effect, including:
  8. * - width: The width of the resized image.
  9. * - height: The height of the resized image.
  10. * - effect: The effect information, including:
  11. * - id: The effect identifier.
  12. * - label: The effect name.
  13. * - description: The effect description.
  14. */
  15. #}
  16. {% if data.width and data.height -%}
  17. {{ data.width }}×{{ data.height }}
  18. {%- else -%}
  19. {% if data.width %}
  20. {% trans %}
  21. width {{ data.width }}
  22. {% endtrans %}
  23. {% elseif data.height %}
  24. {% trans %}
  25. height {{ data.height }}
  26. {% endtrans %}
  27. {% endif %}
  28. {%- endif %}

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