bundle.phtml 762 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. // @codingStandardsIgnoreFile
  7. ?>
  8. <?php /** @var \Magento\Tax\Pricing\Render\Adjustment $block */ ?>
  9. <?php if ($block->displayPriceIncludingTax()): ?>
  10. <?= /* @escapeNotVerified */ $block->getDisplayAmount() ?>
  11. <?php elseif ($block->displayPriceExcludingTax()): ?>
  12. <?= /* @escapeNotVerified */ $block->getDisplayAmountExclTax() ?>
  13. <?php elseif ($block->displayBothPrices()): ?>
  14. <?= /* @escapeNotVerified */ $block->getDisplayAmount() ?>
  15. <?php if ($block->getDisplayAmountExclTax() !== $block->getDisplayAmount()): ?>
  16. (+<?= /* @escapeNotVerified */ $block->getDisplayAmountExclTax() ?> Excl. Tax)
  17. <?php endif; ?>
  18. <?php endif; ?>