25'ten fazla konu seçemezsiniz
Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
|
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- ?>
-
- <?php /** @var \Magento\Tax\Pricing\Render\Adjustment $block */ ?>
- <?php /** @var $escaper \Magento\Framework\Escaper */ ?>
-
- <?php if ($block->displayBothPrices()): ?>
- <span id="<?= $escaper->escapeHtmlAttr($block->buildIdWithPrefix('price-excluding-tax-')) ?>"
- data-label="<?= $escaper->escapeHtmlAttr(__('Excl. Tax')) ?>"
- data-price-amount="<?= /* @noEscape */ $block->getRawAmount() ?>"
- data-price-type="<?= $escaper->escapeHtmlAttr($block->getDataPriceType()); ?>"
- class="price-wrapper price-excluding-tax">
- <span class="price"><?= /* @noEscape */ $block->getDisplayAmountExclTax() ?></span></span>
- <?php endif; ?>
|