image-effects-smart-crop-summary.html.twig in Image Effects 8.3
Same filename and directory in other branches
Default theme implementation for a summary of an image smart crop effect.
Available variables:
- data: The current configuration for this smart crop effect, including:
- width: The width of the crop, in pixels or percentage.
- height: The height of the crop, in pixels or percentage.
- effect: The effect information, including:
- id: The effect identifier.
- label: The effect name.
- description: The effect description.
1 theme call to image-effects-smart-crop-summary.html.twig
- SmartCropImageEffect::getSummary in src/
Plugin/ ImageEffect/ SmartCropImageEffect.php - Returns a render array summarizing the configuration of the image effect.
File
templates/image-effects-smart-crop-summary.html.twigView source
- {#
- /**
- * @file
- * Default theme implementation for a summary of an image smart crop effect.
- *
- * Available variables:
- * - data: The current configuration for this smart crop effect, including:
- * - width: The width of the crop, in pixels or percentage.
- * - height: The height of the crop, in pixels or percentage.
- * - effect: The effect information, including:
- * - id: The effect identifier.
- * - label: The effect name.
- * - description: The effect description.
- *
- * @ingroup themeable
- */
- #}
- {% if data.width and data.height -%}
- {{ data.width }}×{{ data.height }}
- {%- else -%}
- {% if data.width %}
- {% trans %}
- width {{ data.width }}
- {% endtrans %}
- {% elseif data.height %}
- {% trans %}
- height {{ data.height }}
- {% endtrans %}
- {% endif %}
- {%- endif %}