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.
 
 
 
 
 
 

19 satır
780 B

  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. ?>
  7. <?php /** @var \Magento\Tax\Pricing\Render\Adjustment $block */ ?>
  8. <?php /** @var $escaper \Magento\Framework\Escaper */ ?>
  9. <?php if ($block->displayBothPrices()): ?>
  10. <span id="<?= $escaper->escapeHtmlAttr($block->buildIdWithPrefix('price-excluding-tax-')) ?>"
  11. data-label="<?= $escaper->escapeHtmlAttr(__('Excl. Tax')) ?>"
  12. data-price-amount="<?= /* @noEscape */ $block->getRawAmount() ?>"
  13. data-price-type="<?= $escaper->escapeHtmlAttr($block->getDataPriceType()); ?>"
  14. class="price-wrapper price-excluding-tax">
  15. <span class="price"><?= /* @noEscape */ $block->getDisplayAmountExclTax() ?></span></span>
  16. <?php endif; ?>