image-scale-summary.html.twig 923 B

12345678910111213141516171819202122232425262728293031323334353637
  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 %}