image-rotate-summary.html.twig 820 B

1234567891011121314151617181920212223242526
  1. {#
  2. /**
  3. * @file
  4. * Theme override 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. #}
  19. {% if data.random %}
  20. {% set degrees = data.degrees|abs %}
  21. {% trans %}
  22. random between -{{ degrees }}° and {{ degrees }}°
  23. {% endtrans %}
  24. {% else %}
  25. {{ data.degrees }}°
  26. {% endif %}