![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/module-bundle/view/base/templates/product/price/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ ?> <?php /** * @var \Magento\Framework\Pricing\Render\PriceBox $block * @var \Magento\Framework\Locale\LocaleFormatter $localeFormatter */ /** @var \Magento\Bundle\Pricing\Price\TierPrice $tierPriceModel */ $tierPriceModel = $block->getPrice(); $tierPrices = $tierPriceModel->getTierPriceList(); ?> <?php if (count($tierPrices)):?> <ul class="<?= $block->escapeHtmlAttr(($block->hasListClass() ? $block->getListClass() : 'prices-tier items')) ?>"> <?php foreach ($tierPrices as $index => $price): ?> <li class="item"> <?= /* @noEscape */ __( 'Buy %1 with %2 discount each', $localeFormatter->formatNumber($price['price_qty']), '<strong class="benefit">' . $localeFormatter->formatNumber(round($price['percentage_value'])) . '%</strong>' ); ?> </li> <?php endforeach; ?> </ul> <?php endif; ?>