| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?php
- if (!defined('WPINC')) {
- die;
- }
- /** @var array<int,array{id:int,label:string,base_price:float,tiers:array,in_stock:bool}> $variants */
- ?>
- <div class="studiou-fpp-price-table-wrap">
- <h3 class="studiou-fpp-price-table-title"><?php esc_html_e('Price list', 'studiou-wc-free-photo-product'); ?></h3>
- <table class="studiou-fpp-price-table">
- <thead>
- <tr>
- <th class="studiou-fpp-price-table-variant"><?php esc_html_e('Variant', 'studiou-wc-free-photo-product'); ?></th>
- <th class="studiou-fpp-price-table-price"><?php esc_html_e('Unit price', 'studiou-wc-free-photo-product'); ?></th>
- <th class="studiou-fpp-price-table-discount"><?php esc_html_e('Quantity discount', 'studiou-wc-free-photo-product'); ?></th>
- </tr>
- </thead>
- <tbody>
- <?php foreach ($variants as $v) :
- $row_classes = array('studiou-fpp-price-table-row');
- if (empty($v['in_stock'])) {
- $row_classes[] = 'studiou-fpp-price-table-row-oos';
- }
- ?>
- <tr class="<?php echo esc_attr(implode(' ', $row_classes)); ?>">
- <td class="studiou-fpp-price-table-variant"><?php echo esc_html($v['label']); ?></td>
- <td class="studiou-fpp-price-table-price"><?php echo wp_kses_post(wc_price($v['base_price'])); ?></td>
- <td class="studiou-fpp-price-table-discount">
- <?php if (!empty($v['tiers'])) : ?>
- <ul class="studiou-fpp-price-table-tiers">
- <?php foreach ($v['tiers'] as $tier) :
- $from = isset($tier['from_qty']) ? (int) $tier['from_qty'] : 0;
- $pct = isset($tier['percent']) ? (float) $tier['percent'] : 0.0;
- if ($from <= 0 || $pct <= 0) continue;
- $pct_str = rtrim(rtrim(number_format($pct, 2, '.', ''), '0'), '.');
- ?>
- <li class="studiou-fpp-price-table-tier">
- <span class="studiou-fpp-price-table-tier-qty"><?php echo esc_html($from); ?>+</span>
- <span class="studiou-fpp-price-table-tier-pct">−<?php echo esc_html($pct_str); ?> %</span>
- </li>
- <?php endforeach; ?>
- </ul>
- <?php else : ?>
- <span class="studiou-fpp-price-table-no-discount">—</span>
- <?php endif; ?>
- </td>
- </tr>
- <?php endforeach; ?>
- </tbody>
- </table>
- </div>
|