Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
bundle.phtml
Go to the documentation of this file.
1 <?php
7 // @codingStandardsIgnoreFile
8 
9 ?>
10 
11 <?php ?>
12 <?php if ($block->displayPriceIncludingTax()): ?>
13  <?= /* @escapeNotVerified */ $block->getDisplayAmount() ?>
14 <?php elseif ($block->displayPriceExcludingTax()): ?>
15  <?= /* @escapeNotVerified */ $block->getDisplayAmountExclTax() ?>
16 <?php elseif ($block->displayBothPrices()): ?>
17  <?= /* @escapeNotVerified */ $block->getDisplayAmount() ?>
18  <?php if ($block->getDisplayAmountExclTax() !== $block->getDisplayAmount()): ?>
19  (+<?= /* @escapeNotVerified */ $block->getDisplayAmountExclTax() ?> Excl. Tax)
20  <?php endif; ?>
21 <?php endif; ?>
endif
Definition: bundle.phtml:74
elseif(isset( $params[ 'redirect_parent']))
Definition: iframe.phtml:17
$block
Definition: block.php:8