You are here

image-effects-smart-crop-summary.html.twig in Image Effects 8

Default theme implementation for a summary of an image smart crop effect.

Available variables:

  • data: The current configuration for this smart crop effect, including:

    • width: The width of the crop, in pixels or percentage.
    • height: The height of the crop, in pixels or percentage.
  • effect: The effect information, including:
    • id: The effect identifier.
    • label: The effect name.
    • description: The effect description.

File

templates/image-effects-smart-crop-summary.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation for a summary of an image smart crop effect.
  5. *
  6. * Available variables:
  7. * - data: The current configuration for this smart crop effect, including:
  8. * - width: The width of the crop, in pixels or percentage.
  9. * - height: The height of the crop, in pixels or percentage.
  10. * - effect: The effect information, including:
  11. * - id: The effect identifier.
  12. * - label: The effect name.
  13. * - description: The effect description.
  14. *
  15. * @ingroup themeable
  16. */
  17. #}
  18. {% if data.width and data.height -%}
  19. {{ data.width }}×{{ data.height }}
  20. {%- else -%}
  21. {% if data.width %}
  22. {% trans %}
  23. width {{ data.width }}
  24. {% endtrans %}
  25. {% elseif data.height %}
  26. {% trans %}
  27. height {{ data.height }}
  28. {% endtrans %}
  29. {% endif %}
  30. {%- endif %}