Upgraded drupal core with security updates
[yaffs-website] / web / core / modules / image / templates / image-rotate-summary.html.twig
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 %}