Plugin Directory

Changeset 3286897


Ignore:
Timestamp:
05/03/2025 05:32:05 PM (11 months ago)
Author:
wpbrewer
Message:

Update to version 1.7.0 from GitHub

Location:
wpbr-payuni-payment
Files:
4 added
22 edited
1 copied

Legend:

Unmodified
Added
Removed
  • wpbr-payuni-payment/tags/1.7.0/assets/js/scripts.js

    r3131276 r3286897  
    1 jQuery(function ($) {
     1document.addEventListener('DOMContentLoaded', function() {
    22    'use strict';
    33
    4     document.getElementById('payuni-form').submit();
    5    
     4    const payuniForm = document.getElementById('payuni-form');
     5    if (payuniForm) {
     6        payuniForm.submit();
     7    }
    68});
  • wpbr-payuni-payment/tags/1.7.0/readme.txt

    r3190716 r3286897  
    55Tested up to: 6.7
    66Requires PHP: 7.4
    7 Stable tag: 1.6.4
     7Stable tag: 1.7.0
    88License: GPLv2 or later.
    99License URI: http://www.gnu.org/licenses/gpl-2.0.txt
     
    5959
    6060== Changelog ==
     61
     62= 1.7.0 - 2025/05/04 =
     63
     64* ADD - Support UnionPay
     65* FIX - Javascript error on checkout page
    6166
    6267= 1.6.4 - 2024/11/18 =
  • wpbr-payuni-payment/tags/1.7.0/src/Api/PaymentRequest.php

    r3136477 r3286897  
    6161            $encrypt_info['TradeInvoice'] = 1;
    6262        }
     63
     64        $encrypt_info = apply_filters( 'payuni_upp_transaction_args_data', $encrypt_info, $order );
    6365
    6466        PayuniPayment::log( 'request encrypt info:' . wc_print_r( $encrypt_info, true ) );
  • wpbr-payuni-payment/tags/1.7.0/src/Gateways/GatewayBase.php

    r3166905 r3286897  
    103103
    104104        $this->api_url    = ( $this->testmode ) ? 'https://sandbox-api.payuni.com.tw/api/upp' : 'https://api.payuni.com.tw/api/upp';
    105         $this->notify_url = add_query_arg( 'wc-api', 'payuni_payment', home_url( '/' ) );
    106         $this->return_url = add_query_arg( 'wc-api', 'payuni_return', home_url( '/' ) );
     105        $this->notify_url = WC()->api_request_url( 'payuni_payment' );
     106        $this->return_url = WC()->api_request_url( 'payuni_return' );
    107107
    108108        add_action( 'woocommerce_order_details_after_order_table', array( $this, 'payuni_payment_detail_after_order_table' ), 10, 1 );
  • wpbr-payuni-payment/tags/1.7.0/src/PayuniPayment.php

    r3190716 r3286897  
    1818use WPBrewer\Payuni\Payment\Gateways\CreditInstallment24;
    1919use WPBrewer\Payuni\Payment\Gateways\CreditInstallment30;
     20use WPBrewer\Payuni\Payment\Gateways\CreditUnionPay;
    2021use WPBrewer\Payuni\Payment\Gateways\Cvs;
    2122use WPBrewer\Payuni\Payment\Gateways\GooglePay;
     
    139140
    140141        self::$allowed_payments = array(
    141             Credit::GATEWAY_ID     => '\WPBrewer\Payuni\Payment\Gateways\Credit',
    142             Cvs::GATEWAY_ID        => '\WPBrewer\Payuni\Payment\Gateways\Cvs',
    143             Atm::GATEWAY_ID        => '\WPBrewer\Payuni\Payment\Gateways\Atm',
    144             Aftee::GATEWAY_ID      => '\WPBrewer\Payuni\Payment\Gateways\Aftee',
    145             ApplePay::GATEWAY_ID   => '\WPBrewer\Payuni\Payment\Gateways\ApplePay',
    146             GooglePay::GATEWAY_ID  => '\WPBrewer\Payuni\Payment\Gateways\GooglePay',
    147             SamsungPay::GATEWAY_ID => '\WPBrewer\Payuni\Payment\Gateways\SamsungPay',
    148             LinePay::GATEWAY_ID    => '\WPBrewer\Payuni\Payment\Gateways\LinePay',
     142            Credit::GATEWAY_ID         => '\WPBrewer\Payuni\Payment\Gateways\Credit',
     143            Cvs::GATEWAY_ID            => '\WPBrewer\Payuni\Payment\Gateways\Cvs',
     144            Atm::GATEWAY_ID            => '\WPBrewer\Payuni\Payment\Gateways\Atm',
     145            Aftee::GATEWAY_ID          => '\WPBrewer\Payuni\Payment\Gateways\Aftee',
     146            ApplePay::GATEWAY_ID       => '\WPBrewer\Payuni\Payment\Gateways\ApplePay',
     147            GooglePay::GATEWAY_ID      => '\WPBrewer\Payuni\Payment\Gateways\GooglePay',
     148            SamsungPay::GATEWAY_ID     => '\WPBrewer\Payuni\Payment\Gateways\SamsungPay',
     149            LinePay::GATEWAY_ID        => '\WPBrewer\Payuni\Payment\Gateways\LinePay',
     150            CreditUnionPay::GATEWAY_ID => '\WPBrewer\Payuni\Payment\Gateways\CreditUnionPay',
    149151        );
    150152
  • wpbr-payuni-payment/tags/1.7.0/vendor/autoload.php

    r3131276 r3286897  
    1515        }
    1616    }
    17     trigger_error(
    18         $err,
    19         E_USER_ERROR
    20     );
     17    throw new RuntimeException($err);
    2118}
    2219
  • wpbr-payuni-payment/tags/1.7.0/vendor/composer/InstalledVersions.php

    r3131276 r3286897  
    2828{
    2929    /**
     30     * @var string|null if set (by reflection by Composer), this should be set to the path where this class is being copied to
     31     * @internal
     32     */
     33    private static $selfDir = null;
     34
     35    /**
    3036     * @var mixed[]|null
    3137     * @psalm-var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}|array{}|null
    3238     */
    3339    private static $installed;
     40
     41    /**
     42     * @var bool
     43     */
     44    private static $installedIsLocalDir;
    3445
    3546    /**
     
    310321        self::$installed = $data;
    311322        self::$installedByVendor = array();
     323
     324        // when using reload, we disable the duplicate protection to ensure that self::$installed data is
     325        // always returned, but we cannot know whether it comes from the installed.php in __DIR__ or not,
     326        // so we have to assume it does not, and that may result in duplicate data being returned when listing
     327        // all installed packages for example
     328        self::$installedIsLocalDir = false;
     329    }
     330
     331    /**
     332     * @return string
     333     */
     334    private static function getSelfDir()
     335    {
     336        if (self::$selfDir === null) {
     337            self::$selfDir = strtr(__DIR__, '\\', '/');
     338        }
     339
     340        return self::$selfDir;
    312341    }
    313342
     
    323352
    324353        $installed = array();
     354        $copiedLocalDir = false;
    325355
    326356        if (self::$canGetVendors) {
     357            $selfDir = self::getSelfDir();
    327358            foreach (ClassLoader::getRegisteredLoaders() as $vendorDir => $loader) {
     359                $vendorDir = strtr($vendorDir, '\\', '/');
    328360                if (isset(self::$installedByVendor[$vendorDir])) {
    329361                    $installed[] = self::$installedByVendor[$vendorDir];
     
    331363                    /** @var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>} $required */
    332364                    $required = require $vendorDir.'/composer/installed.php';
    333                     $installed[] = self::$installedByVendor[$vendorDir] = $required;
    334                     if (null === self::$installed && strtr($vendorDir.'/composer', '\\', '/') === strtr(__DIR__, '\\', '/')) {
    335                         self::$installed = $installed[count($installed) - 1];
     365                    self::$installedByVendor[$vendorDir] = $required;
     366                    $installed[] = $required;
     367                    if (self::$installed === null && $vendorDir.'/composer' === $selfDir) {
     368                        self::$installed = $required;
     369                        self::$installedIsLocalDir = true;
    336370                    }
     371                }
     372                if (self::$installedIsLocalDir && $vendorDir.'/composer' === $selfDir) {
     373                    $copiedLocalDir = true;
    337374                }
    338375            }
     
    351388        }
    352389
    353         if (self::$installed !== array()) {
     390        if (self::$installed !== array() && !$copiedLocalDir) {
    354391            $installed[] = self::$installed;
    355392        }
  • wpbr-payuni-payment/tags/1.7.0/vendor/composer/autoload_classmap.php

    r3166905 r3286897  
    2323    'WPBrewer\\Payuni\\Payment\\Gateways\\CreditInstallment6' => $baseDir . '/src/Gateways/CreditInstallment6.php',
    2424    'WPBrewer\\Payuni\\Payment\\Gateways\\CreditInstallment9' => $baseDir . '/src/Gateways/CreditInstallment9.php',
     25    'WPBrewer\\Payuni\\Payment\\Gateways\\CreditUnionPay' => $baseDir . '/src/Gateways/CreditUnionPay.php',
    2526    'WPBrewer\\Payuni\\Payment\\Gateways\\Cvs' => $baseDir . '/src/Gateways/Cvs.php',
    2627    'WPBrewer\\Payuni\\Payment\\Gateways\\GatewayBase' => $baseDir . '/src/Gateways/GatewayBase.php',
  • wpbr-payuni-payment/tags/1.7.0/vendor/composer/autoload_static.php

    r3166905 r3286897  
    3838        'WPBrewer\\Payuni\\Payment\\Gateways\\CreditInstallment6' => __DIR__ . '/../..' . '/src/Gateways/CreditInstallment6.php',
    3939        'WPBrewer\\Payuni\\Payment\\Gateways\\CreditInstallment9' => __DIR__ . '/../..' . '/src/Gateways/CreditInstallment9.php',
     40        'WPBrewer\\Payuni\\Payment\\Gateways\\CreditUnionPay' => __DIR__ . '/../..' . '/src/Gateways/CreditUnionPay.php',
    4041        'WPBrewer\\Payuni\\Payment\\Gateways\\Cvs' => __DIR__ . '/../..' . '/src/Gateways/Cvs.php',
    4142        'WPBrewer\\Payuni\\Payment\\Gateways\\GatewayBase' => __DIR__ . '/../..' . '/src/Gateways/GatewayBase.php',
  • wpbr-payuni-payment/tags/1.7.0/vendor/composer/installed.php

    r3190716 r3286897  
    22    'root' => array(
    33        'name' => 'wpbrewer/wpbr-payuni-payment',
    4         'pretty_version' => '1.6.4',
    5         'version' => '1.6.4.0',
    6         'reference' => '4ec8cc13d01dbec4e7b13f7bbffe0b52a1ebd6c9',
     4        'pretty_version' => '1.7.0',
     5        'version' => '1.7.0.0',
     6        'reference' => '059b8119e2b66e3cc09cc1cabfaf7d261f857f33',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    1212    'versions' => array(
    1313        'wpbrewer/wpbr-payuni-payment' => array(
    14             'pretty_version' => '1.6.4',
    15             'version' => '1.6.4.0',
    16             'reference' => '4ec8cc13d01dbec4e7b13f7bbffe0b52a1ebd6c9',
     14            'pretty_version' => '1.7.0',
     15            'version' => '1.7.0.0',
     16            'reference' => '059b8119e2b66e3cc09cc1cabfaf7d261f857f33',
    1717            'type' => 'library',
    1818            'install_path' => __DIR__ . '/../../',
  • wpbr-payuni-payment/tags/1.7.0/wpbr-payuni-payment.php

    r3190716 r3286897  
    99 * Description:       Provides PAYUNi UPP(UNiPaypage) Payment for WooCommerce.
    1010 * Plugin URI:        https://wpbrewer.com/product/wpbr-payuni-payment
    11  * Version:           1.6.4
     11 * Version:           1.7.0
    1212 * Author:            WPBrewer
    1313 * Author URI:        https://wpbrewer.com/
     
    2828define( 'WPBR_PAYUNI_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
    2929define( 'WPBR_PAYUNI_BASENAME', plugin_basename( __FILE__ ) );
    30 define( 'WPBR_PAYUNI_PAYMENT_VERSION', '1.6.4' );
     30define( 'WPBR_PAYUNI_PAYMENT_VERSION', '1.7.0' );
    3131
    3232require_once WPBR_PAYUNI_PLUGIN_DIR . 'vendor/autoload.php';
  • wpbr-payuni-payment/trunk/assets/js/scripts.js

    r3131276 r3286897  
    1 jQuery(function ($) {
     1document.addEventListener('DOMContentLoaded', function() {
    22    'use strict';
    33
    4     document.getElementById('payuni-form').submit();
    5    
     4    const payuniForm = document.getElementById('payuni-form');
     5    if (payuniForm) {
     6        payuniForm.submit();
     7    }
    68});
  • wpbr-payuni-payment/trunk/readme.txt

    r3190716 r3286897  
    55Tested up to: 6.7
    66Requires PHP: 7.4
    7 Stable tag: 1.6.4
     7Stable tag: 1.7.0
    88License: GPLv2 or later.
    99License URI: http://www.gnu.org/licenses/gpl-2.0.txt
     
    5959
    6060== Changelog ==
     61
     62= 1.7.0 - 2025/05/04 =
     63
     64* ADD - Support UnionPay
     65* FIX - Javascript error on checkout page
    6166
    6267= 1.6.4 - 2024/11/18 =
  • wpbr-payuni-payment/trunk/src/Api/PaymentRequest.php

    r3136477 r3286897  
    6161            $encrypt_info['TradeInvoice'] = 1;
    6262        }
     63
     64        $encrypt_info = apply_filters( 'payuni_upp_transaction_args_data', $encrypt_info, $order );
    6365
    6466        PayuniPayment::log( 'request encrypt info:' . wc_print_r( $encrypt_info, true ) );
  • wpbr-payuni-payment/trunk/src/Gateways/GatewayBase.php

    r3166905 r3286897  
    103103
    104104        $this->api_url    = ( $this->testmode ) ? 'https://sandbox-api.payuni.com.tw/api/upp' : 'https://api.payuni.com.tw/api/upp';
    105         $this->notify_url = add_query_arg( 'wc-api', 'payuni_payment', home_url( '/' ) );
    106         $this->return_url = add_query_arg( 'wc-api', 'payuni_return', home_url( '/' ) );
     105        $this->notify_url = WC()->api_request_url( 'payuni_payment' );
     106        $this->return_url = WC()->api_request_url( 'payuni_return' );
    107107
    108108        add_action( 'woocommerce_order_details_after_order_table', array( $this, 'payuni_payment_detail_after_order_table' ), 10, 1 );
  • wpbr-payuni-payment/trunk/src/PayuniPayment.php

    r3190716 r3286897  
    1818use WPBrewer\Payuni\Payment\Gateways\CreditInstallment24;
    1919use WPBrewer\Payuni\Payment\Gateways\CreditInstallment30;
     20use WPBrewer\Payuni\Payment\Gateways\CreditUnionPay;
    2021use WPBrewer\Payuni\Payment\Gateways\Cvs;
    2122use WPBrewer\Payuni\Payment\Gateways\GooglePay;
     
    139140
    140141        self::$allowed_payments = array(
    141             Credit::GATEWAY_ID     => '\WPBrewer\Payuni\Payment\Gateways\Credit',
    142             Cvs::GATEWAY_ID        => '\WPBrewer\Payuni\Payment\Gateways\Cvs',
    143             Atm::GATEWAY_ID        => '\WPBrewer\Payuni\Payment\Gateways\Atm',
    144             Aftee::GATEWAY_ID      => '\WPBrewer\Payuni\Payment\Gateways\Aftee',
    145             ApplePay::GATEWAY_ID   => '\WPBrewer\Payuni\Payment\Gateways\ApplePay',
    146             GooglePay::GATEWAY_ID  => '\WPBrewer\Payuni\Payment\Gateways\GooglePay',
    147             SamsungPay::GATEWAY_ID => '\WPBrewer\Payuni\Payment\Gateways\SamsungPay',
    148             LinePay::GATEWAY_ID    => '\WPBrewer\Payuni\Payment\Gateways\LinePay',
     142            Credit::GATEWAY_ID         => '\WPBrewer\Payuni\Payment\Gateways\Credit',
     143            Cvs::GATEWAY_ID            => '\WPBrewer\Payuni\Payment\Gateways\Cvs',
     144            Atm::GATEWAY_ID            => '\WPBrewer\Payuni\Payment\Gateways\Atm',
     145            Aftee::GATEWAY_ID          => '\WPBrewer\Payuni\Payment\Gateways\Aftee',
     146            ApplePay::GATEWAY_ID       => '\WPBrewer\Payuni\Payment\Gateways\ApplePay',
     147            GooglePay::GATEWAY_ID      => '\WPBrewer\Payuni\Payment\Gateways\GooglePay',
     148            SamsungPay::GATEWAY_ID     => '\WPBrewer\Payuni\Payment\Gateways\SamsungPay',
     149            LinePay::GATEWAY_ID        => '\WPBrewer\Payuni\Payment\Gateways\LinePay',
     150            CreditUnionPay::GATEWAY_ID => '\WPBrewer\Payuni\Payment\Gateways\CreditUnionPay',
    149151        );
    150152
  • wpbr-payuni-payment/trunk/vendor/autoload.php

    r3131276 r3286897  
    1515        }
    1616    }
    17     trigger_error(
    18         $err,
    19         E_USER_ERROR
    20     );
     17    throw new RuntimeException($err);
    2118}
    2219
  • wpbr-payuni-payment/trunk/vendor/composer/InstalledVersions.php

    r3131276 r3286897  
    2828{
    2929    /**
     30     * @var string|null if set (by reflection by Composer), this should be set to the path where this class is being copied to
     31     * @internal
     32     */
     33    private static $selfDir = null;
     34
     35    /**
    3036     * @var mixed[]|null
    3137     * @psalm-var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}|array{}|null
    3238     */
    3339    private static $installed;
     40
     41    /**
     42     * @var bool
     43     */
     44    private static $installedIsLocalDir;
    3445
    3546    /**
     
    310321        self::$installed = $data;
    311322        self::$installedByVendor = array();
     323
     324        // when using reload, we disable the duplicate protection to ensure that self::$installed data is
     325        // always returned, but we cannot know whether it comes from the installed.php in __DIR__ or not,
     326        // so we have to assume it does not, and that may result in duplicate data being returned when listing
     327        // all installed packages for example
     328        self::$installedIsLocalDir = false;
     329    }
     330
     331    /**
     332     * @return string
     333     */
     334    private static function getSelfDir()
     335    {
     336        if (self::$selfDir === null) {
     337            self::$selfDir = strtr(__DIR__, '\\', '/');
     338        }
     339
     340        return self::$selfDir;
    312341    }
    313342
     
    323352
    324353        $installed = array();
     354        $copiedLocalDir = false;
    325355
    326356        if (self::$canGetVendors) {
     357            $selfDir = self::getSelfDir();
    327358            foreach (ClassLoader::getRegisteredLoaders() as $vendorDir => $loader) {
     359                $vendorDir = strtr($vendorDir, '\\', '/');
    328360                if (isset(self::$installedByVendor[$vendorDir])) {
    329361                    $installed[] = self::$installedByVendor[$vendorDir];
     
    331363                    /** @var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>} $required */
    332364                    $required = require $vendorDir.'/composer/installed.php';
    333                     $installed[] = self::$installedByVendor[$vendorDir] = $required;
    334                     if (null === self::$installed && strtr($vendorDir.'/composer', '\\', '/') === strtr(__DIR__, '\\', '/')) {
    335                         self::$installed = $installed[count($installed) - 1];
     365                    self::$installedByVendor[$vendorDir] = $required;
     366                    $installed[] = $required;
     367                    if (self::$installed === null && $vendorDir.'/composer' === $selfDir) {
     368                        self::$installed = $required;
     369                        self::$installedIsLocalDir = true;
    336370                    }
     371                }
     372                if (self::$installedIsLocalDir && $vendorDir.'/composer' === $selfDir) {
     373                    $copiedLocalDir = true;
    337374                }
    338375            }
     
    351388        }
    352389
    353         if (self::$installed !== array()) {
     390        if (self::$installed !== array() && !$copiedLocalDir) {
    354391            $installed[] = self::$installed;
    355392        }
  • wpbr-payuni-payment/trunk/vendor/composer/autoload_classmap.php

    r3166905 r3286897  
    2323    'WPBrewer\\Payuni\\Payment\\Gateways\\CreditInstallment6' => $baseDir . '/src/Gateways/CreditInstallment6.php',
    2424    'WPBrewer\\Payuni\\Payment\\Gateways\\CreditInstallment9' => $baseDir . '/src/Gateways/CreditInstallment9.php',
     25    'WPBrewer\\Payuni\\Payment\\Gateways\\CreditUnionPay' => $baseDir . '/src/Gateways/CreditUnionPay.php',
    2526    'WPBrewer\\Payuni\\Payment\\Gateways\\Cvs' => $baseDir . '/src/Gateways/Cvs.php',
    2627    'WPBrewer\\Payuni\\Payment\\Gateways\\GatewayBase' => $baseDir . '/src/Gateways/GatewayBase.php',
  • wpbr-payuni-payment/trunk/vendor/composer/autoload_static.php

    r3166905 r3286897  
    3838        'WPBrewer\\Payuni\\Payment\\Gateways\\CreditInstallment6' => __DIR__ . '/../..' . '/src/Gateways/CreditInstallment6.php',
    3939        'WPBrewer\\Payuni\\Payment\\Gateways\\CreditInstallment9' => __DIR__ . '/../..' . '/src/Gateways/CreditInstallment9.php',
     40        'WPBrewer\\Payuni\\Payment\\Gateways\\CreditUnionPay' => __DIR__ . '/../..' . '/src/Gateways/CreditUnionPay.php',
    4041        'WPBrewer\\Payuni\\Payment\\Gateways\\Cvs' => __DIR__ . '/../..' . '/src/Gateways/Cvs.php',
    4142        'WPBrewer\\Payuni\\Payment\\Gateways\\GatewayBase' => __DIR__ . '/../..' . '/src/Gateways/GatewayBase.php',
  • wpbr-payuni-payment/trunk/vendor/composer/installed.php

    r3190716 r3286897  
    22    'root' => array(
    33        'name' => 'wpbrewer/wpbr-payuni-payment',
    4         'pretty_version' => '1.6.4',
    5         'version' => '1.6.4.0',
    6         'reference' => '4ec8cc13d01dbec4e7b13f7bbffe0b52a1ebd6c9',
     4        'pretty_version' => '1.7.0',
     5        'version' => '1.7.0.0',
     6        'reference' => '059b8119e2b66e3cc09cc1cabfaf7d261f857f33',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    1212    'versions' => array(
    1313        'wpbrewer/wpbr-payuni-payment' => array(
    14             'pretty_version' => '1.6.4',
    15             'version' => '1.6.4.0',
    16             'reference' => '4ec8cc13d01dbec4e7b13f7bbffe0b52a1ebd6c9',
     14            'pretty_version' => '1.7.0',
     15            'version' => '1.7.0.0',
     16            'reference' => '059b8119e2b66e3cc09cc1cabfaf7d261f857f33',
    1717            'type' => 'library',
    1818            'install_path' => __DIR__ . '/../../',
  • wpbr-payuni-payment/trunk/wpbr-payuni-payment.php

    r3190716 r3286897  
    99 * Description:       Provides PAYUNi UPP(UNiPaypage) Payment for WooCommerce.
    1010 * Plugin URI:        https://wpbrewer.com/product/wpbr-payuni-payment
    11  * Version:           1.6.4
     11 * Version:           1.7.0
    1212 * Author:            WPBrewer
    1313 * Author URI:        https://wpbrewer.com/
     
    2828define( 'WPBR_PAYUNI_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
    2929define( 'WPBR_PAYUNI_BASENAME', plugin_basename( __FILE__ ) );
    30 define( 'WPBR_PAYUNI_PAYMENT_VERSION', '1.6.4' );
     30define( 'WPBR_PAYUNI_PAYMENT_VERSION', '1.7.0' );
    3131
    3232require_once WPBR_PAYUNI_PLUGIN_DIR . 'vendor/autoload.php';
Note: See TracChangeset for help on using the changeset viewer.