PluginProbe
Tiered Pricing Table for WooCommerce / 7.1.4
Tiered Pricing Table for WooCommerce v7.1.4
8.0.2 7.1.7 7.1.5 7.1.4 7.1.1 6.5.0 6.4.0 6.1.0 trunk 1.0 1.1 2.0 2.0.1 2.0.2 2.1 2.1.1 2.1.2 2.2.0 2.2.1 2.2.2 2.2.3 2.3.0 2.3.1 2.3.2 2.3.3 All 91 releases
tier-pricing-table / src / Addons / AdvancedQuantityOptions / GlobalPricingOptions.php

GlobalPricingOptions.php in Tiered Pricing Table for WooCommerce 7.1.4, at src/Addons/AdvancedQuantityOptions/GlobalPricingOptions.php

30 lines 733 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace TierPricingTable\Addons\AdvancedQuantityOptions;
4
5 use TierPricingTable\Addons\GlobalTieredPricing\GlobalPricingRule;
6 use TierPricingTable\CalculationLogic;
7 use TierPricingTable\PricingRule;
8 class GlobalPricingOptions {
9 /**
10 * Form
11 *
12 * @var AdvancedQuantityOptionsForm
13 */
14 protected $form;
15
16 public function __construct( AdvancedQuantityOptionsForm $form ) {
17 $this->form = $form;
18 add_action( 'tiered_pricing_table/global_pricing/after_minimum_order_quantity_field', function ( $ruleId ) {
19 $this->form->render(
20 $ruleId,
21 null,
22 null,
23 true,
24 false
25 );
26 } );
27 }
28
29 }
30