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

Default theme implementation for a summary of an image rotate effect.

Available variables:

  • data: The current configuration for this resize effect, including:

    • degrees: Degrees to rotate the image, positive values will rotate the image clockwise, negative values counter-clockwise.
    • bgcolor: The hex background color of the new areas created as consequence of rotation.
    • random: If the rotation angle is randomized.
  • effect: The effect information, including:
    • id: The effect identifier.
    • label: The effect name.
    • description: The effect description.

File

core/modules/image/templates/image-rotate-summary.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation for a summary of an image rotate effect.
  5. *
  6. * Available variables:
  7. * - data: The current configuration for this resize effect, including:
  8. * - degrees: Degrees to rotate the image, positive values will rotate the
  9. * image clockwise, negative values counter-clockwise.
  10. * - bgcolor: The hex background color of the new areas created as consequence
  11. * of rotation.
  12. * - random: If the rotation angle is randomized.
  13. * - effect: The effect information, including:
  14. * - id: The effect identifier.
  15. * - label: The effect name.
  16. * - description: The effect description.
  17. *
  18. * @ingroup themeable
  19. */
  20. #}
  21. {% if data.random %}
  22. {% set degrees = data.degrees|abs %}
  23. {% trans %}
  24. random between -{{ degrees }}° and {{ degrees }}°
  25. {% endtrans %}
  26. {% else %}
  27. {{ data.degrees }}°
  28. {% endif %}

Related topics