# tier-pricing-table/7.1.4/src/Addons/TaxSettings/GlobalRulesIntegration/GlobalRules.php

Tiered Pricing Table for WooCommerce, version 7.1.4. 21 lines.

- Page: https://pluginprobe.com/plugins/tier-pricing-table/7.1.4/code/src/Addons/TaxSettings/GlobalRulesIntegration/GlobalRules.php
- Raw: https://pluginprobe.com/plugins/tier-pricing-table/7.1.4/raw/src/Addons/TaxSettings/GlobalRulesIntegration/GlobalRules.php
- Modified: 2026-06-26T14:29:16+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/tier-pricing-table/7.1.4/code/src/Addons/TaxSettings/GlobalRulesIntegration/GlobalRules.php#L10-L20`.

```php
<?php

namespace TierPricingTable\Addons\TaxSettings\GlobalRulesIntegration;

class GlobalRules {
    public function __construct() {
        add_filter(
            'tiered_pricing_table/global_pricing/form_tabs',
            function ( $tabs, $form ) {
                $settingsTab = array_pop( $tabs );
                $tabs[] = new TaxSettingsTab($form);
                $tabs[] = $settingsTab;
                return $tabs;
            },
            10,
            2
        );
    }

}

```
