Same filename in this branch
  1. 10 core/modules/image/templates/image-scale-summary.html.twig
  2. 10 core/themes/stable9/templates/admin/image-scale-summary.html.twig
Same filename and directory in other branches
  1. 8.9.x core/modules/image/templates/image-scale-summary.html.twig
  2. 9 core/modules/image/templates/image-scale-summary.html.twig

Default theme implementation for a summary of an image scale 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.
    • upscale: If images larger than their original size can scale.
  • effect: The effect information, including:
    • id: The effect identifier.
    • label: The effect name.
    • description: The effect description.

File

core/modules/image/templates/image-scale-summary.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation for a summary of an image scale 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. * - upscale: If images larger than their original size can scale.
  11. * - effect: The effect information, including:
  12. * - id: The effect identifier.
  13. * - label: The effect name.
  14. * - description: The effect description.
  15. *
  16. * @ingroup themeable
  17. */
  18. #}
  19. {% if data.width and data.height -%}
  20. {{ data.width }}×{{ data.height }}
  21. {%- else -%}
  22. {% if data.width %}
  23. {% trans %}
  24. width {{ data.width }}
  25. {% endtrans %}
  26. {% elseif data.height %}
  27. {% trans %}
  28. height {{ data.height }}
  29. {% endtrans %}
  30. {% endif %}
  31. {%- endif %}
  32. {% if data.upscale %}
  33. {% trans %}
  34. (upscaling allowed)
  35. {% endtrans %}
  36. {% endif %}

Related topics