├── .gitignore ├── Compatibility.php ├── LICENSE.txt ├── admin ├── class-woomp-admin.php ├── class-woomp-email.php ├── class-woomp-order.php ├── class-woomp-payment-cod-clone.php ├── class-woomp-payment-cvs.php ├── class-woomp-product.php ├── class-woomp-shipping-flat-rate.php ├── css │ ├── main.css │ ├── main.min.css │ └── woomp-admin.css ├── index.php ├── js │ ├── choose-cvs.js │ └── woomp-admin.js ├── partials │ └── woomp-admin-display.php ├── resources │ ├── class-checkout.php │ └── shop_subscription │ │ ├── card-management │ │ ├── class-card-management.php │ │ ├── index.php │ │ └── templates │ │ │ ├── row-head.php │ │ │ └── row.php │ │ ├── class-shop-subscription.php │ │ ├── index.php │ │ └── invoice-management │ │ ├── class-invoice-management.php │ │ └── index.php └── settings │ ├── class-woomp-setting-gateway.php │ ├── class-woomp-setting-invoice.php │ ├── class-woomp-setting-shipping.php │ └── class-woomp-setting.php ├── composer.json ├── composer.lock ├── debug.php ├── includes ├── PChomePay-Cart-for-WooCommerce │ ├── PChomePay.php │ ├── images │ │ └── pchomepay_logo.png │ ├── includes │ │ ├── ApiException.php │ │ ├── FileTokenStorage.php │ │ ├── OrderStatusCodeEnum.php │ │ ├── PChomePayClient.php │ │ ├── PChomePayGateway.php │ │ ├── PChomePayPIGateway.php │ │ └── settings.php │ └── sandbox_pchomepay_api_token.json ├── class-woomp-activator.php ├── class-woomp-deactivator.php ├── class-woomp-i18n.php ├── class-woomp-loader.php ├── class-woomp-logger.php ├── class-woomp.php ├── index.php ├── line-pay-for-woo │ ├── README.md │ ├── assets │ │ ├── images │ │ │ └── logo │ │ │ │ ├── THB │ │ │ │ ├── linepay_logo_119x39.png │ │ │ │ ├── linepay_logo_238x78.png │ │ │ │ ├── linepay_logo_61x20.png │ │ │ │ ├── linepay_logo_74x24.png │ │ │ │ ├── linepay_logo_85x28.png │ │ │ │ └── linepay_logo_98x32.png │ │ │ │ ├── linepay_logo_119x39.png │ │ │ │ ├── linepay_logo_238x78.png │ │ │ │ ├── linepay_logo_61x20.png │ │ │ │ ├── linepay_logo_74x24.png │ │ │ │ ├── linepay_logo_85x28.png │ │ │ │ └── linepay_logo_98x32.png │ │ └── js │ │ │ ├── customer-refund-action.js │ │ │ └── logo-uploader.js │ ├── includes │ │ ├── class-wc-gateway-linepay-const.php │ │ ├── class-wc-gateway-linepay-exception.php │ │ ├── class-wc-gateway-linepay-logger.php │ │ ├── class-wc-gateway-linepay-settings.php │ │ └── class-wc-gateway-linepay.php │ ├── languages │ │ ├── woocommerce-gateway-linepay-ja.mo │ │ ├── woocommerce-gateway-linepay-ja.po │ │ ├── woocommerce-gateway-linepay-ko_KR.mo │ │ ├── woocommerce-gateway-linepay-ko_KR.po │ │ ├── woocommerce-gateway-linepay-th.mo │ │ ├── woocommerce-gateway-linepay-th.po │ │ ├── woocommerce-gateway-linepay-zh_CN.mo │ │ ├── woocommerce-gateway-linepay-zh_CN.po │ │ ├── woocommerce-gateway-linepay-zh_TW.mo │ │ ├── woocommerce-gateway-linepay-zh_TW.po │ │ └── woocommerce-gateway-linepay.pot │ └── line-pay-for-woo.php ├── paynow-einvoice │ ├── LICENSE.txt │ ├── README.txt │ ├── admin │ │ ├── class-paynow-einvoice-admin.php │ │ ├── css │ │ │ └── paynow-einvoice-admin.css │ │ ├── index.php │ │ └── js │ │ │ └── paynow-einvoice-admin.js │ ├── includes │ │ ├── class-paynow-einvoice-activator.php │ │ ├── class-paynow-einvoice-deactivator.php │ │ ├── class-paynow-einvoice-i18n.php │ │ ├── class-paynow-einvoice-issue-type.php │ │ ├── class-paynow-einvoice-loader.php │ │ ├── class-paynow-einvoice.php │ │ ├── index.php │ │ └── settings │ │ │ └── class-paynow-einvoice-settings-tab.php │ ├── index.php │ ├── languages │ │ ├── paynow-einvoice-zh_TW.mo │ │ ├── paynow-einvoice-zh_TW.po │ │ └── paynow-einvoice.pot │ ├── paynow-einvoice.php │ ├── public │ │ ├── class-paynow-einvoice-public.php │ │ ├── css │ │ │ └── paynow-einvoice-public.css │ │ ├── index.php │ │ └── js │ │ │ └── paynow-einvoice-public.js │ └── uninstall.php ├── paynow-payment │ ├── LICENSE.txt │ ├── README.txt │ ├── admin │ │ ├── class-paynow-payment-admin.php │ │ ├── css │ │ │ └── firstbank-payment-admin.css │ │ ├── index.php │ │ └── js │ │ │ ├── paynow-payment-admin.js │ │ │ └── paynow-status-check.js │ ├── includes │ │ ├── admin │ │ │ └── meta-boxes │ │ │ │ └── class-paynow-payment-order-meta-boxes.php │ │ ├── class-paynow-payment-activator.php │ │ ├── class-paynow-payment-deactivator.php │ │ ├── class-paynow-payment-loader.php │ │ ├── class-paynow-payment.php │ │ ├── gateways │ │ │ ├── abstract-paynow-payment.php │ │ │ ├── class-paynow-payment-barcode.php │ │ │ ├── class-paynow-payment-credit.php │ │ │ ├── class-paynow-payment-ibon.php │ │ │ ├── class-paynow-payment-request.php │ │ │ ├── class-paynow-payment-response.php │ │ │ ├── class-paynow-payment-virtual-account.php │ │ │ └── class-paynow-payment-webatm.php │ │ ├── index.php │ │ ├── settings │ │ │ ├── class-paynow-payment-settings-tab.php │ │ │ ├── settings-paynow-payment-barcode.php │ │ │ ├── settings-paynow-payment-credit.php │ │ │ ├── settings-paynow-payment-famiport.php │ │ │ ├── settings-paynow-payment-ibon.php │ │ │ ├── settings-paynow-payment-virtual-account.php │ │ │ └── settings-paynow-payment-webatm.php │ │ └── utils │ │ │ └── class-paynow-pay-type.php │ ├── index.php │ ├── languages │ │ ├── paynow-payment-zh_TW.mo │ │ ├── paynow-payment-zh_TW.po │ │ └── paynow-payment.pot │ ├── paynow-logo.png │ ├── paynow-payment.php │ ├── public │ │ ├── class-paynow-payment-public.php │ │ ├── css │ │ │ └── firstbank-payment-public.css │ │ └── index.php │ └── uninstall.php ├── paynow-shipping │ ├── assets │ │ ├── css │ │ │ ├── paynow-shipping-admin.css │ │ │ └── paynow-shipping-public.css │ │ ├── images │ │ │ └── paynow-logo.jpg │ │ └── js │ │ │ ├── paynow-pro-admin-choose-cvs.js │ │ │ ├── paynow-pro-admin.js │ │ │ ├── paynow-shipping-admin.js │ │ │ └── paynow-shipping-public.js │ ├── includes │ │ ├── admin │ │ │ └── meta-boxes │ │ │ │ ├── class-paynow-shipping-order-admin.php │ │ │ │ └── class-paynow-shipping-order-meta-box.php │ │ ├── class-paynow-shipping.php │ │ ├── index.php │ │ ├── settings │ │ │ ├── class-paynow-shipping-settings-tab.php │ │ │ ├── form_fields.php │ │ │ ├── settings-paynow-shipping-c2c-711.php │ │ │ ├── settings-paynow-shipping-c2c-family.php │ │ │ ├── settings-paynow-shipping-c2c-hilife.php │ │ │ └── settings-paynow-shipping-hd-tcat.php │ │ ├── shippings │ │ │ ├── abstract-paynow-shipping.php │ │ │ ├── api │ │ │ │ ├── class-paynow-shipping-request.php │ │ │ │ └── class-paynow-shipping-response.php │ │ │ ├── class-paynow-shipping-c2c-711.php │ │ │ ├── class-paynow-shipping-c2c-family.php │ │ │ ├── class-paynow-shipping-c2c-hilife.php │ │ │ └── class-paynow-shipping-hd-tcat.php │ │ └── utils │ │ │ ├── class-paynow-shipping-logistic-service.php │ │ │ ├── class-paynow-shipping-order-meta.php │ │ │ ├── class-paynow-shipping-status.php │ │ │ └── paynow-shipping-functions.php │ ├── index.php │ ├── languages │ │ ├── _DS_Store │ │ ├── paynow-shipping-zh_TW.mo │ │ ├── paynow-shipping-zh_TW.po │ │ └── paynow-shipping.pot │ ├── paynow-shipping.php │ └── templates │ │ └── cart │ │ └── choose-cvs.php ├── payuni │ ├── assets │ │ ├── admin.js │ │ ├── card.css │ │ ├── card.js │ │ ├── img │ │ │ └── logo_p.png │ │ └── my-account.js │ ├── payuni.php │ ├── settings │ │ ├── gateway.php │ │ └── shipping.php │ └── src │ │ ├── apis │ │ └── Payment.php │ │ ├── gateways │ │ ├── AbstractGateway.php │ │ ├── Atm.php │ │ ├── Credit.php │ │ ├── CreditInstallment.php │ │ ├── CreditSubscription.php │ │ ├── Cvs.php │ │ ├── Refund.php │ │ ├── Request.php │ │ ├── Response.php │ │ └── Subscription.php │ │ ├── pages │ │ └── MyAccount.php │ │ ├── posts │ │ └── ShopOrder │ │ │ ├── Ajax.php │ │ │ └── Metabox.php │ │ └── shippings │ │ ├── Request.php │ │ ├── Response.php │ │ └── SevenB2c.php ├── ry-woocommerce-tools │ ├── LICENSE.txt │ ├── class.ry-wt.admin.php │ ├── class.ry-wt.main.php │ ├── class.ry-wt.update.php │ ├── icon │ │ ├── ecpay_logo.png │ │ ├── newebpay_logo.png │ │ └── smilepay_logo.png │ ├── languages │ │ ├── ry-woocommerce-tools-zh_TW.mo │ │ ├── ry-woocommerce-tools-zh_TW.po │ │ └── ry-woocommerce-tools.pot │ ├── readme.txt │ ├── ry-woocommerce-tools.php │ ├── style │ │ ├── admin │ │ │ └── ry_shipping.css │ │ ├── js │ │ │ ├── admin │ │ │ │ └── ry_shipping.js │ │ │ └── ry_shipping.js │ │ └── ry_wt.css │ ├── templates │ │ ├── cart │ │ │ └── cart-choose-cvs.php │ │ ├── emails │ │ │ ├── customer-atm-remind.php │ │ │ ├── customer-cvs-store.php │ │ │ ├── customer-cvs-transporting.php │ │ │ └── plain │ │ │ │ ├── customer-atm-remind.php │ │ │ │ ├── customer-cvs-store.php │ │ │ │ └── customer-cvs-transporting.php │ │ └── order │ │ │ ├── order-ecpay-payment-info-atm.php │ │ │ ├── order-ecpay-payment-info-barcode.php │ │ │ ├── order-ecpay-payment-info-cvs.php │ │ │ ├── order-newebpay-payment-info-atm.php │ │ │ ├── order-newebpay-payment-info-barcode.php │ │ │ ├── order-newebpay-payment-info-cvs.php │ │ │ ├── order-smilepay-payment-info-atm.php │ │ │ ├── order-smilepay-payment-info-barcode.php │ │ │ ├── order-smilepay-payment-info-cvs-711.php │ │ │ └── order-smilepay-payment-info-cvs-fami.php │ └── woocommerce │ │ ├── abstracts │ │ ├── abstract-ecpay.php │ │ ├── abstract-newebpay.php │ │ └── abstract-smilepay.php │ │ ├── admin │ │ ├── meta-boxes │ │ │ ├── ecpay-shipping-meta-box.php │ │ │ ├── newebpay-shipping-meta-box.php │ │ │ └── smilepay-shipping-meta-box.php │ │ └── view │ │ │ ├── html-setting-pro_info.php │ │ │ └── html-setting-tools.php │ │ ├── emails │ │ ├── ecpay-shipping-customer-atm-transfer-remind.php │ │ ├── ecpay-shipping-customer-cvs-get-expired.php │ │ ├── ecpay-shipping-customer-cvs-get-remind.php │ │ ├── ecpay-shipping-customer-cvs-store.php │ │ ├── ecpay-shipping-customer-cvs-transporting.php │ │ └── wmp-shipped.php │ │ ├── gateways │ │ ├── ecpay │ │ │ ├── ecpay-gateway-atm.php │ │ │ ├── ecpay-gateway-barcode.php │ │ │ ├── ecpay-gateway-credit-installment-12.php │ │ │ ├── ecpay-gateway-credit-installment-18.php │ │ │ ├── ecpay-gateway-credit-installment-24.php │ │ │ ├── ecpay-gateway-credit-installment-3.php │ │ │ ├── ecpay-gateway-credit-installment-6.php │ │ │ ├── ecpay-gateway-credit-installment.php │ │ │ ├── ecpay-gateway-credit.php │ │ │ ├── ecpay-gateway-cvs.php │ │ │ ├── ecpay-gateway-webatm.php │ │ │ ├── ecpay-gateway.php │ │ │ └── includes │ │ │ │ ├── ecpay-gateway-api.php │ │ │ │ ├── ecpay-gateway-base.php │ │ │ │ ├── ecpay-gateway-response.php │ │ │ │ ├── settings-ecpay-gateway-atm.php │ │ │ │ ├── settings-ecpay-gateway-barcode.php │ │ │ │ ├── settings-ecpay-gateway-credit-installment.php │ │ │ │ ├── settings-ecpay-gateway-credit.php │ │ │ │ ├── settings-ecpay-gateway-cvs.php │ │ │ │ ├── settings-ecpay-gateway-webatm.php │ │ │ │ └── settings-ecpay-gateway.php │ │ ├── newebpay │ │ │ ├── includes │ │ │ │ ├── newebpay-gateway-api.php │ │ │ │ ├── newebpay-gateway-base.php │ │ │ │ ├── newebpay-gateway-response.php │ │ │ │ ├── settings-newebpay-gateway-atm.php │ │ │ │ ├── settings-newebpay-gateway-barcode.php │ │ │ │ ├── settings-newebpay-gateway-credit-installment.php │ │ │ │ ├── settings-newebpay-gateway-credit.php │ │ │ │ ├── settings-newebpay-gateway-cvs.php │ │ │ │ ├── settings-newebpay-gateway-webatm.php │ │ │ │ └── settings-newebpay-gateway.php │ │ │ ├── newebpay-gateway-atm.php │ │ │ ├── newebpay-gateway-barcode.php │ │ │ ├── newebpay-gateway-credit-installment-12.php │ │ │ ├── newebpay-gateway-credit-installment-18.php │ │ │ ├── newebpay-gateway-credit-installment-24.php │ │ │ ├── newebpay-gateway-credit-installment-3.php │ │ │ ├── newebpay-gateway-credit-installment-30.php │ │ │ ├── newebpay-gateway-credit-installment-6.php │ │ │ ├── newebpay-gateway-credit-installment.php │ │ │ ├── newebpay-gateway-credit.php │ │ │ ├── newebpay-gateway-cvs.php │ │ │ ├── newebpay-gateway-webatm.php │ │ │ └── newebpay-gateway.php │ │ └── smilepay │ │ │ ├── includes │ │ │ ├── settings-smilepay-gateway-atm.php │ │ │ ├── settings-smilepay-gateway-barcode.php │ │ │ ├── settings-smilepay-gateway-credit.php │ │ │ ├── settings-smilepay-gateway-cvs.php │ │ │ ├── settings-smilepay-gateway-webatm.php │ │ │ ├── settings-smilepay-gateway.php │ │ │ ├── smilepay-gateway-api.php │ │ │ ├── smilepay-gateway-base.php │ │ │ └── smilepay-gateway-response.php │ │ │ ├── smilepay-gateway-atm.php │ │ │ ├── smilepay-gateway-barcode.php │ │ │ ├── smilepay-gateway-credit.php │ │ │ ├── smilepay-gateway-cvs-711.php │ │ │ ├── smilepay-gateway-cvs-fami.php │ │ │ ├── smilepay-gateway-webatm.php │ │ │ └── smilepay-gateway.php │ │ ├── settings │ │ ├── class-settings-ry-tools.php │ │ └── settings-ry-tools-pro.php │ │ └── shipping │ │ ├── ecpay │ │ ├── ecpay-shipping-cvs-711-freeze.php │ │ ├── ecpay-shipping-cvs-711.php │ │ ├── ecpay-shipping-cvs-family.php │ │ ├── ecpay-shipping-cvs-hilife.php │ │ ├── ecpay-shipping-cvs-okmart.php │ │ ├── ecpay-shipping-home-post.php │ │ ├── ecpay-shipping-home-tcat-freeze.php │ │ ├── ecpay-shipping-home-tcat-frozen.php │ │ ├── ecpay-shipping-home-tcat.php │ │ ├── ecpay-shipping.php │ │ └── includes │ │ │ ├── ecpay-shipping-admin.php │ │ │ ├── ecpay-shipping-api.php │ │ │ ├── ecpay-shipping-base.php │ │ │ ├── ecpay-shipping-response.php │ │ │ ├── settings-ecpay-shipping-base.php │ │ │ └── settings-ecpay-shipping.php │ │ ├── newebpay │ │ ├── includes │ │ │ ├── newebpay-shipping-admin.php │ │ │ ├── settings-newebpay-shipping-cvs.php │ │ │ └── settings-newebpay-shipping.php │ │ ├── newebpay-shipping-cvs.php │ │ └── newebpay-shipping.php │ │ ├── ry-base.php │ │ └── smilepay │ │ ├── includes │ │ ├── settings-smilepay-shipping-base.php │ │ ├── settings-smilepay-shipping.php │ │ ├── smilepay-shipping-admin.php │ │ ├── smilepay-shipping-api.php │ │ ├── smilepay-shipping-base.php │ │ └── smilepay-shipping-response.php │ │ ├── smilepay-shipping-cvs-711.php │ │ ├── smilepay-shipping-cvs-fami.php │ │ └── smilepay-shipping.php ├── woomp-ecpay-invoice │ ├── assets │ │ └── js │ │ │ ├── admin.js │ │ │ └── checkout.js │ ├── src │ │ ├── apis │ │ │ ├── EcpayInvoiceFields.php │ │ │ ├── EcpayInvoiceHandler.php │ │ │ ├── EcpayInvoiceSDK.php │ │ │ └── EcpayInvoiceShell.php │ │ ├── posts │ │ │ └── ShopOrder │ │ │ │ ├── Admin.php │ │ │ │ ├── Ajax.php │ │ │ │ └── Metabox.php │ │ └── templates │ │ │ ├── Checkout.php │ │ │ └── MyAccount.php │ └── woomp-ecpay-invoice.php ├── woomp-ezpay-invoice │ ├── assets │ │ └── js │ │ │ ├── admin.js │ │ │ └── checkout.js │ ├── src │ │ ├── apis │ │ │ ├── EzPayInvoiceFields.php │ │ │ └── EzPayInvoiceHandler.php │ │ ├── posts │ │ │ └── ShopOrder │ │ │ │ ├── Admin.php │ │ │ │ ├── Ajax.php │ │ │ │ └── Metabox.php │ │ └── templates │ │ │ ├── Checkout.php │ │ │ └── MyAccount.php │ └── woomp-ezpay-invoice.php └── woomp-paynow-shipping │ ├── src │ ├── class-woomp-paynow-shipping.php │ ├── settings │ │ ├── settings-woomp-paynow-shipping-c2c-711-frozen.php │ │ ├── settings-woomp-paynow-shipping-c2c-family-frozen.php │ │ ├── settings-woomp-paynow-shipping-hd-tcat-frozen.php │ │ └── settings-woomp-paynow-shipping-hd-tcat-refrigerated.php │ └── shippings │ │ ├── class-woomp-paynow-shipping-c2c-711-frozen.php │ │ ├── class-woomp-paynow-shipping-c2c-family-frozen.php │ │ ├── class-woomp-paynow-shipping-hd-tcat-frozen.php │ │ └── class-woomp-paynow-shipping-hd-tcat-refrigerated.php │ └── woomp-paynow-shipping.php ├── index.php ├── init.php ├── languages ├── paynow-einvoice-zh_TW.mo ├── paynow-einvoice-zh_TW.po ├── paynow-einvoice.pot ├── paynow-payment-zh_TW.mo ├── paynow-payment-zh_TW.po ├── paynow-payment.pot ├── paynow-shipping-zh_TW.mo ├── paynow-shipping-zh_TW.po ├── paynow-shipping.pot ├── ry-woocommerce-ecpay-invoice-zh_TW.mo ├── ry-woocommerce-ecpay-invoice-zh_TW.po ├── ry-woocommerce-ecpay-invoice.pot ├── ry-woocommerce-tools-pro-zh_TW.mo ├── ry-woocommerce-tools-pro-zh_TW.po ├── ry-woocommerce-tools-pro.pot ├── ry-woocommerce-tools-zh_TW-backup-202411220238190.po~ ├── ry-woocommerce-tools-zh_TW-backup-202411220238470.po~ ├── ry-woocommerce-tools-zh_TW.l10n.php ├── ry-woocommerce-tools-zh_TW.mo ├── ry-woocommerce-tools-zh_TW.po ├── ry-woocommerce-tools.pot ├── woomp-backup-202505201608450.pot~ ├── woomp-zh_TW-backup-202505201609120.po~ ├── woomp-zh_TW.mo ├── woomp-zh_TW.po └── woomp.pot ├── phpcs.xml ├── public ├── class-woomp-checkout.php ├── class-woomp-order.php ├── class-woomp-product.php ├── class-woomp-public.php ├── css │ ├── themes │ │ ├── astra.css │ │ ├── avada.css │ │ ├── blocksy.css │ │ ├── bolge.css │ │ ├── bridge.css │ │ ├── divi.css │ │ ├── flatsome.css │ │ ├── generatepress.css │ │ ├── go.css │ │ ├── helloelementor.css │ │ ├── hestia.css │ │ ├── jupiterx.css │ │ ├── oceanwp.css │ │ ├── ohio.css │ │ ├── onepress.css │ │ ├── phloxpro.css │ │ ├── seedlet.css │ │ ├── shopkeeper.css │ │ ├── sober.css │ │ ├── soledad.css │ │ ├── storefront.css │ │ ├── sydney.css │ │ └── woodmart.css │ └── woomp-public.css ├── index.php ├── js │ ├── transient-load.js │ ├── transient-save.js │ ├── twzipcode.js │ ├── woomp-checkout.js │ └── woomp-public.js ├── partials │ └── woomp-public-display.php └── transient.php ├── tailwind.config.cjs ├── uninstall.php ├── vendor ├── a7 │ └── autoload │ │ ├── README.md │ │ ├── UNLICENSE │ │ ├── composer.json │ │ ├── package.php │ │ └── src │ │ └── autoload.php ├── autoload.php ├── composer │ ├── ClassLoader.php │ ├── InstalledVersions.php │ ├── LICENSE │ ├── autoload_classmap.php │ ├── autoload_files.php │ ├── autoload_namespaces.php │ ├── autoload_psr4.php │ ├── autoload_real.php │ ├── autoload_static.php │ ├── installed.json │ ├── installed.php │ └── platform_check.php ├── dennykuo │ └── invoice-porter │ │ ├── .gitignore │ │ ├── README.md │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── config │ │ ├── config.php │ │ └── ezpay-invoice.php │ │ ├── demo │ │ ├── create.php │ │ ├── index.php │ │ ├── info-redirect.php │ │ ├── info.php │ │ └── invalid.php │ │ ├── phpunit.xml │ │ ├── src │ │ ├── AbstractInvoice.php │ │ ├── Contracts │ │ │ └── ApiRequest.php │ │ ├── EzpayApi.php │ │ ├── EzpayInvoice.php │ │ └── helpers.php │ │ └── tests │ │ ├── Feature │ │ └── .gitkeep │ │ └── Unit │ │ └── .gitkeep ├── guzzlehttp │ ├── guzzle │ │ ├── .php_cs │ │ ├── CHANGELOG.md │ │ ├── Dockerfile │ │ ├── LICENSE │ │ ├── README.md │ │ ├── UPGRADING.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Client.php │ │ │ ├── ClientInterface.php │ │ │ ├── Cookie │ │ │ ├── CookieJar.php │ │ │ ├── CookieJarInterface.php │ │ │ ├── FileCookieJar.php │ │ │ ├── SessionCookieJar.php │ │ │ └── SetCookie.php │ │ │ ├── Exception │ │ │ ├── BadResponseException.php │ │ │ ├── ClientException.php │ │ │ ├── ConnectException.php │ │ │ ├── GuzzleException.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── RequestException.php │ │ │ ├── SeekException.php │ │ │ ├── ServerException.php │ │ │ ├── TooManyRedirectsException.php │ │ │ └── TransferException.php │ │ │ ├── Handler │ │ │ ├── CurlFactory.php │ │ │ ├── CurlFactoryInterface.php │ │ │ ├── CurlHandler.php │ │ │ ├── CurlMultiHandler.php │ │ │ ├── EasyHandle.php │ │ │ ├── MockHandler.php │ │ │ ├── Proxy.php │ │ │ └── StreamHandler.php │ │ │ ├── HandlerStack.php │ │ │ ├── MessageFormatter.php │ │ │ ├── Middleware.php │ │ │ ├── Pool.php │ │ │ ├── PrepareBodyMiddleware.php │ │ │ ├── RedirectMiddleware.php │ │ │ ├── RequestOptions.php │ │ │ ├── RetryMiddleware.php │ │ │ ├── TransferStats.php │ │ │ ├── UriTemplate.php │ │ │ ├── Utils.php │ │ │ ├── functions.php │ │ │ └── functions_include.php │ ├── promises │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── AggregateException.php │ │ │ ├── CancellationException.php │ │ │ ├── Coroutine.php │ │ │ ├── Create.php │ │ │ ├── Each.php │ │ │ ├── EachPromise.php │ │ │ ├── FulfilledPromise.php │ │ │ ├── Is.php │ │ │ ├── Promise.php │ │ │ ├── PromiseInterface.php │ │ │ ├── PromisorInterface.php │ │ │ ├── RejectedPromise.php │ │ │ ├── RejectionException.php │ │ │ ├── TaskQueue.php │ │ │ ├── TaskQueueInterface.php │ │ │ ├── Utils.php │ │ │ ├── functions.php │ │ │ └── functions_include.php │ └── psr7 │ │ ├── .github │ │ ├── FUNDING.yml │ │ ├── stale.yml │ │ └── workflows │ │ │ ├── ci.yml │ │ │ ├── integration.yml │ │ │ └── static.yml │ │ ├── .php_cs.dist │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── AppendStream.php │ │ ├── BufferStream.php │ │ ├── CachingStream.php │ │ ├── DroppingStream.php │ │ ├── FnStream.php │ │ ├── Header.php │ │ ├── InflateStream.php │ │ ├── LazyOpenStream.php │ │ ├── LimitStream.php │ │ ├── Message.php │ │ ├── MessageTrait.php │ │ ├── MimeType.php │ │ ├── MultipartStream.php │ │ ├── NoSeekStream.php │ │ ├── PumpStream.php │ │ ├── Query.php │ │ ├── Request.php │ │ ├── Response.php │ │ ├── Rfc7230.php │ │ ├── ServerRequest.php │ │ ├── Stream.php │ │ ├── StreamDecoratorTrait.php │ │ ├── StreamWrapper.php │ │ ├── UploadedFile.php │ │ ├── Uri.php │ │ ├── UriComparator.php │ │ ├── UriNormalizer.php │ │ ├── UriResolver.php │ │ ├── Utils.php │ │ ├── functions.php │ │ └── functions_include.php ├── oberonlai │ └── wp-metabox │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── Metabox.php │ │ └── assets │ │ ├── script.js │ │ └── style.css ├── psr │ └── http-message │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── docs │ │ ├── PSR7-Interfaces.md │ │ └── PSR7-Usage.md │ │ └── src │ │ ├── MessageInterface.php │ │ ├── RequestInterface.php │ │ ├── ResponseInterface.php │ │ ├── ServerRequestInterface.php │ │ ├── StreamInterface.php │ │ ├── UploadedFileInterface.php │ │ └── UriInterface.php ├── ralouphie │ └── getallheaders │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ └── getallheaders.php ├── symfony │ ├── polyfill-intl-idn │ │ ├── Idn.php │ │ ├── Info.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Resources │ │ │ └── unidata │ │ │ │ ├── DisallowedRanges.php │ │ │ │ ├── Regex.php │ │ │ │ ├── deviation.php │ │ │ │ ├── disallowed.php │ │ │ │ ├── disallowed_STD3_mapped.php │ │ │ │ ├── disallowed_STD3_valid.php │ │ │ │ ├── ignored.php │ │ │ │ ├── mapped.php │ │ │ │ └── virama.php │ │ ├── bootstrap.php │ │ ├── bootstrap80.php │ │ └── composer.json │ ├── polyfill-intl-normalizer │ │ ├── LICENSE │ │ ├── Normalizer.php │ │ ├── README.md │ │ ├── Resources │ │ │ ├── stubs │ │ │ │ └── Normalizer.php │ │ │ └── unidata │ │ │ │ ├── canonicalComposition.php │ │ │ │ ├── canonicalDecomposition.php │ │ │ │ ├── combiningClass.php │ │ │ │ └── compatibilityDecomposition.php │ │ ├── bootstrap.php │ │ ├── bootstrap80.php │ │ └── composer.json │ └── polyfill-php72 │ │ ├── LICENSE │ │ ├── Php72.php │ │ ├── README.md │ │ ├── bootstrap.php │ │ └── composer.json └── yahnis-elsts │ └── plugin-update-checker │ ├── .editorconfig │ ├── .gitattributes │ ├── .gitignore │ ├── Puc │ ├── v5 │ │ └── PucFactory.php │ └── v5p3 │ │ ├── Autoloader.php │ │ ├── DebugBar │ │ ├── Extension.php │ │ ├── Panel.php │ │ ├── PluginExtension.php │ │ ├── PluginPanel.php │ │ └── ThemePanel.php │ │ ├── InstalledPackage.php │ │ ├── Metadata.php │ │ ├── OAuthSignature.php │ │ ├── Plugin │ │ ├── Package.php │ │ ├── PluginInfo.php │ │ ├── Ui.php │ │ ├── Update.php │ │ └── UpdateChecker.php │ │ ├── PucFactory.php │ │ ├── Scheduler.php │ │ ├── StateStore.php │ │ ├── Theme │ │ ├── Package.php │ │ ├── Update.php │ │ └── UpdateChecker.php │ │ ├── Update.php │ │ ├── UpdateChecker.php │ │ ├── UpgraderStatus.php │ │ ├── Utils.php │ │ └── Vcs │ │ ├── Api.php │ │ ├── BaseChecker.php │ │ ├── BitBucketApi.php │ │ ├── GitHubApi.php │ │ ├── GitLabApi.php │ │ ├── PluginUpdateChecker.php │ │ ├── Reference.php │ │ ├── ReleaseAssetSupport.php │ │ ├── ReleaseFilteringFeature.php │ │ ├── ThemeUpdateChecker.php │ │ └── VcsCheckerMethods.php │ ├── README.md │ ├── composer.json │ ├── css │ └── puc-debug-bar.css │ ├── examples │ ├── plugin.json │ └── theme.json │ ├── js │ └── debug-bar.js │ ├── languages │ ├── plugin-update-checker-ca.mo │ ├── plugin-update-checker-ca.po │ ├── plugin-update-checker-cs_CZ.mo │ ├── plugin-update-checker-cs_CZ.po │ ├── plugin-update-checker-da_DK.mo │ ├── plugin-update-checker-da_DK.po │ ├── plugin-update-checker-de_DE.mo │ ├── plugin-update-checker-de_DE.po │ ├── plugin-update-checker-es_AR.mo │ ├── plugin-update-checker-es_AR.po │ ├── plugin-update-checker-es_CL.mo │ ├── plugin-update-checker-es_CL.po │ ├── plugin-update-checker-es_CO.mo │ ├── plugin-update-checker-es_CO.po │ ├── plugin-update-checker-es_CR.mo │ ├── plugin-update-checker-es_CR.po │ ├── plugin-update-checker-es_DO.mo │ ├── plugin-update-checker-es_DO.po │ ├── plugin-update-checker-es_ES.mo │ ├── plugin-update-checker-es_ES.po │ ├── plugin-update-checker-es_GT.mo │ ├── plugin-update-checker-es_GT.po │ ├── plugin-update-checker-es_HN.mo │ ├── plugin-update-checker-es_HN.po │ ├── plugin-update-checker-es_MX.mo │ ├── plugin-update-checker-es_MX.po │ ├── plugin-update-checker-es_PE.mo │ ├── plugin-update-checker-es_PE.po │ ├── plugin-update-checker-es_PR.mo │ ├── plugin-update-checker-es_PR.po │ ├── plugin-update-checker-es_UY.mo │ ├── plugin-update-checker-es_UY.po │ ├── plugin-update-checker-es_VE.mo │ ├── plugin-update-checker-es_VE.po │ ├── plugin-update-checker-fa_IR.mo │ ├── plugin-update-checker-fa_IR.po │ ├── plugin-update-checker-fr_CA.mo │ ├── plugin-update-checker-fr_CA.po │ ├── plugin-update-checker-fr_FR.mo │ ├── plugin-update-checker-fr_FR.po │ ├── plugin-update-checker-hu_HU.mo │ ├── plugin-update-checker-hu_HU.po │ ├── plugin-update-checker-it_IT.mo │ ├── plugin-update-checker-it_IT.po │ ├── plugin-update-checker-ja.mo │ ├── plugin-update-checker-ja.po │ ├── plugin-update-checker-nl_BE.mo │ ├── plugin-update-checker-nl_BE.po │ ├── plugin-update-checker-nl_NL.mo │ ├── plugin-update-checker-nl_NL.po │ ├── plugin-update-checker-pt_BR.mo │ ├── plugin-update-checker-pt_BR.po │ ├── plugin-update-checker-ru_RU.mo │ ├── plugin-update-checker-ru_RU.po │ ├── plugin-update-checker-sl_SI.mo │ ├── plugin-update-checker-sl_SI.po │ ├── plugin-update-checker-sv_SE.mo │ ├── plugin-update-checker-sv_SE.po │ ├── plugin-update-checker-tr_TR.mo │ ├── plugin-update-checker-tr_TR.po │ ├── plugin-update-checker-uk_UA.mo │ ├── plugin-update-checker-uk_UA.po │ ├── plugin-update-checker-zh_CN.mo │ ├── plugin-update-checker-zh_CN.po │ └── plugin-update-checker.pot │ ├── license.txt │ ├── load-v5p3.php │ ├── phpcs.xml │ ├── plugin-update-checker.php │ └── vendor │ ├── Parsedown.php │ ├── ParsedownModern.php │ └── PucReadmeParser.php ├── woocommerce └── checkout │ ├── cart-errors.php │ └── form-checkout.php └── woomp.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j7-dev/woomp/HEAD/.gitignore -------------------------------------------------------------------------------- /Compatibility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j7-dev/woomp/HEAD/Compatibility.php -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j7-dev/woomp/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /admin/class-woomp-admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j7-dev/woomp/HEAD/admin/class-woomp-admin.php -------------------------------------------------------------------------------- /admin/class-woomp-email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j7-dev/woomp/HEAD/admin/class-woomp-email.php -------------------------------------------------------------------------------- /admin/class-woomp-order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j7-dev/woomp/HEAD/admin/class-woomp-order.php -------------------------------------------------------------------------------- /admin/class-woomp-payment-cod-clone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j7-dev/woomp/HEAD/admin/class-woomp-payment-cod-clone.php -------------------------------------------------------------------------------- /admin/class-woomp-payment-cvs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j7-dev/woomp/HEAD/admin/class-woomp-payment-cvs.php -------------------------------------------------------------------------------- /admin/class-woomp-product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j7-dev/woomp/HEAD/admin/class-woomp-product.php -------------------------------------------------------------------------------- /admin/class-woomp-shipping-flat-rate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j7-dev/woomp/HEAD/admin/class-woomp-shipping-flat-rate.php -------------------------------------------------------------------------------- /admin/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j7-dev/woomp/HEAD/admin/css/main.css -------------------------------------------------------------------------------- /admin/css/main.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j7-dev/woomp/HEAD/admin/css/main.min.css -------------------------------------------------------------------------------- /admin/css/woomp-admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j7-dev/woomp/HEAD/admin/css/woomp-admin.css -------------------------------------------------------------------------------- /admin/index.php: -------------------------------------------------------------------------------- 1 |