commerce-pado-addon-product-variation-label.html.twig in Commerce Product Add-on 8
Default product add-on add product variation label template.
Available variables:
- variation_entity: The add on product.
1 theme call to commerce-pado-addon-product-variation-label.html.twig
- PadoAddToCartForm::buildForm in src/
Form/ PadoAddToCartForm.php - Form constructor.
File
tests/modules/commerce_pado_test/templates/commerce-pado-addon-product-variation-label.html.twigView source
- {#
- /**
- * @file
- * Default product add-on add product variation label template.
- *
- * Available variables:
- * - variation_entity: The add on product.
- *
- * @ingroup themeable
- */
- #}
- {% if variation_entity.hasField('attribute_color') %}
- {{ variation_entity.getAttributeValue('attribute_color').label }} for {{ variation_entity.getPrice|commerce_price_format }}
- {% else %}
- {{ variation_entity.label }} for {{ variation_entity.getPrice|commerce_price_format }}
- {% endif %}