'; } public function getSlug() : string { return 'tax-settings'; } public function isEnabled() : bool { if ( get_option( 'woocommerce_calc_taxes' ) !== 'yes' ) { return false; } return parent::isEnabled(); } public function run() { new GlobalRulesIntegration\GlobalRules(); new RoleBasedRulesIntegration(); new TaxSettingsEndpoints(); new Settings(); } }