Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / core / themes / stable / templates / admin / image-scale-summary.html.twig
1 {#
2 /**
3  * @file
4  * Theme override for a summary of an image scale 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  *   - upscale: If images larger than their original size can scale.
11  * - effect: The effect information, including:
12  *   - id: The effect identifier.
13  *   - label: The effect name.
14  *   - description: The effect description.
15  */
16 #}
17 {% if data.width and data.height -%}
18   {{ data.width }}×{{ data.height }}
19 {%- else -%}
20   {% if data.width %}
21     {% trans %}
22       width {{ data.width }}
23     {% endtrans %}
24   {% elseif data.height %}
25     {% trans %}
26       height {{ data.height }}
27     {% endtrans %}
28   {% endif %}
29 {%- endif %}
30
31 {% if data.upscale %}
32   {% trans %}
33     (upscaling allowed)
34   {% endtrans %}
35 {% endif %}