image-scale-and-crop-summary.html.twig

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

Theme override for a summary of an image scale and crop 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.
    • anchor: The part of the image that will be retained after cropping.
    • anchor_label: The translated label of the crop anchor.
  • effect: The effect information, including:
    • id: The effect identifier.
    • label: The effect name.
    • description: The effect description.
1 theme call to image-scale-and-crop-summary.html.twig
ScaleAndCropImageEffect::getSummary in core/modules/image/src/Plugin/ImageEffect/ScaleAndCropImageEffect.php
Returns a render array summarizing the configuration of the image effect.

File

core/themes/stable9/templates/admin/image-scale-and-crop-summary.html.twig

View source
  1. {#
  2. /**
  3. * @file
  4. * Theme override for a summary of an image scale and crop 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. * - anchor: The part of the image that will be retained after cropping.
  11. * - anchor_label: The translated label of the crop anchor.
  12. * - effect: The effect information, including:
  13. * - id: The effect identifier.
  14. * - label: The effect name.
  15. * - description: The effect description.
  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 %}

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