You are here

image-scale-summary.html.twig in Drupal 10

Theme override 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/themes/stable/templates/admin/image-scale-summary.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Theme override 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. #}
  17. {% if data.width and data.height -%}
  18. {{ data.width }}×{{ data.height }}
  19. {%- else -%}
  20. {% if data.width %}
  21. {% trans %}
  22. width {{ data.width }}
  23. {% endtrans %}
  24. {% elseif data.height %}
  25. {% trans %}
  26. height {{ data.height }}
  27. {% endtrans %}
  28. {% endif %}
  29. {%- endif %}
  30. {% if data.upscale %}
  31. {% trans %}
  32. (upscaling allowed)
  33. {% endtrans %}
  34. {% endif %}