Plugin Directory

Changeset 3033043


Ignore:
Timestamp:
02/08/2024 09:02:28 AM (2 years ago)
Author:
bobgroup
Message:

Update to version 1.0.14 from GitLab (https://gitlab.bob.co.za/bobpay/bobpay-woocommerce-plugin; https://gitlab.bob.co.za/bobpay/bobpay-woocommerce-plugin/-/jobs/213197)

Location:
bob-pay
Files:
14 edited
1 copied

Legend:

Unmodified
Added
Removed
  • bob-pay/tags/1.0.14/bobpay-plugin.php

    r3033006 r3033043  
    88 * Requires at least: 5.0
    99 * Requires PHP:      7.0
    10  * Version:           1.0.13
     10 * Version:           1.0.14
    1111 * License:           GPLv2 or later
    1212 */
     
    1717defined('ABSPATH') || exit;
    1818
    19 define('WC_BOBPAY_PLUGIN_VERSION', '1.0.13');
     19define('WC_BOBPAY_PLUGIN_VERSION', '1.0.14');
    2020define('WC_BOBPAY_PLUGIN_URL', untrailingslashit(plugins_url(basename(plugin_dir_path(__FILE__)), basename(__FILE__))));
    2121define('WC_BOBPAY_PLUGIN_PATH', untrailingslashit(plugin_dir_path(__FILE__)));
  • bob-pay/tags/1.0.14/includes/abstract-payment-method.php

    r3033006 r3033043  
    560560    public function setup_constants()
    561561    {
     562        if (!defined('BOBPAY_LOCAL_DEV')) {
     563            define('BOBPAY_LOCAL_DEV', 'false');
     564        }
     565
     566        if (!defined('NGROK_TUNNEL_URL')) {
     567            define('NGROK_TUNNEL_URL', '');
     568        }
     569
    562570        if (defined('BOBPAY_USER_AGENT')) {
    563571            return;
  • bob-pay/tags/1.0.14/includes/class-wc-bobpay-plugin-capitec-pay.php

    r3033006 r3033043  
    2626    {
    2727        parent::init_form_fields();
    28         $this->form_fields = [
    29             ...[
     28        $this->form_fields = array_merge(
     29            [
    3030                'title' => array(
    3131                    'title' => __('Title', 'bob-pay'),
     
    3636                )
    3737            ],
    38             ...$this->form_fields
    39         ];
     38            $this->form_fields
     39        );
    4040    }
    4141
  • bob-pay/tags/1.0.14/includes/class-wc-bobpay-plugin-credit-card.php

    r3033006 r3033043  
    2626    {
    2727        parent::init_form_fields();
    28         $this->form_fields = [
    29             ...[
     28        $this->form_fields = array_merge(
     29            [
    3030                'title' => array(
    3131                    'title' => __('Title', 'bob-pay'),
     
    3636                )
    3737            ],
    38             ...$this->form_fields
    39         ];
     38            $this->form_fields
     39        );
    4040    }
    4141
  • bob-pay/tags/1.0.14/includes/class-wc-bobpay-plugin-instant-eft.php

    r3033006 r3033043  
    2626    {
    2727        parent::init_form_fields();
    28         $this->form_fields = [
    29             ...[
     28        $this->form_fields = array_merge(
     29            [
    3030                'title' => array(
    3131                    'title' => __('Title', 'bob-pay'),
     
    3636                )
    3737            ],
    38             ...$this->form_fields
    39         ];
     38            $this->form_fields
     39        );
    4040    }
    4141
  • bob-pay/tags/1.0.14/includes/class-wc-bobpay-plugin-scan-to-pay.php

    r3033006 r3033043  
    2626    {
    2727        parent::init_form_fields();
    28         $this->form_fields = [
    29             ...[
     28        $this->form_fields = array_merge(
     29            [
    3030                'title' => array(
    3131                    'title' => __('Title', 'bob-pay'),
     
    3636                )
    3737            ],
    38             ...$this->form_fields
    39         ];
     38            $this->form_fields
     39        );
    4040    }
    4141
  • bob-pay/tags/1.0.14/readme.txt

    r3033006 r3033043  
    55Tested up to: 6.1.1
    66Requires PHP: 7.0.0
    7 Stable tag: 1.0.13
     7Stable tag: 1.0.14
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    5050== Changelog ==
    5151
     52= 1.0.14 =
     53Bug fix
     54
    5255= 1.0.13 =
    5356Bug fix
  • bob-pay/trunk/bobpay-plugin.php

    r3033006 r3033043  
    88 * Requires at least: 5.0
    99 * Requires PHP:      7.0
    10  * Version:           1.0.13
     10 * Version:           1.0.14
    1111 * License:           GPLv2 or later
    1212 */
     
    1717defined('ABSPATH') || exit;
    1818
    19 define('WC_BOBPAY_PLUGIN_VERSION', '1.0.13');
     19define('WC_BOBPAY_PLUGIN_VERSION', '1.0.14');
    2020define('WC_BOBPAY_PLUGIN_URL', untrailingslashit(plugins_url(basename(plugin_dir_path(__FILE__)), basename(__FILE__))));
    2121define('WC_BOBPAY_PLUGIN_PATH', untrailingslashit(plugin_dir_path(__FILE__)));
  • bob-pay/trunk/includes/abstract-payment-method.php

    r3033006 r3033043  
    560560    public function setup_constants()
    561561    {
     562        if (!defined('BOBPAY_LOCAL_DEV')) {
     563            define('BOBPAY_LOCAL_DEV', 'false');
     564        }
     565
     566        if (!defined('NGROK_TUNNEL_URL')) {
     567            define('NGROK_TUNNEL_URL', '');
     568        }
     569
    562570        if (defined('BOBPAY_USER_AGENT')) {
    563571            return;
  • bob-pay/trunk/includes/class-wc-bobpay-plugin-capitec-pay.php

    r3033006 r3033043  
    2626    {
    2727        parent::init_form_fields();
    28         $this->form_fields = [
    29             ...[
     28        $this->form_fields = array_merge(
     29            [
    3030                'title' => array(
    3131                    'title' => __('Title', 'bob-pay'),
     
    3636                )
    3737            ],
    38             ...$this->form_fields
    39         ];
     38            $this->form_fields
     39        );
    4040    }
    4141
  • bob-pay/trunk/includes/class-wc-bobpay-plugin-credit-card.php

    r3033006 r3033043  
    2626    {
    2727        parent::init_form_fields();
    28         $this->form_fields = [
    29             ...[
     28        $this->form_fields = array_merge(
     29            [
    3030                'title' => array(
    3131                    'title' => __('Title', 'bob-pay'),
     
    3636                )
    3737            ],
    38             ...$this->form_fields
    39         ];
     38            $this->form_fields
     39        );
    4040    }
    4141
  • bob-pay/trunk/includes/class-wc-bobpay-plugin-instant-eft.php

    r3033006 r3033043  
    2626    {
    2727        parent::init_form_fields();
    28         $this->form_fields = [
    29             ...[
     28        $this->form_fields = array_merge(
     29            [
    3030                'title' => array(
    3131                    'title' => __('Title', 'bob-pay'),
     
    3636                )
    3737            ],
    38             ...$this->form_fields
    39         ];
     38            $this->form_fields
     39        );
    4040    }
    4141
  • bob-pay/trunk/includes/class-wc-bobpay-plugin-scan-to-pay.php

    r3033006 r3033043  
    2626    {
    2727        parent::init_form_fields();
    28         $this->form_fields = [
    29             ...[
     28        $this->form_fields = array_merge(
     29            [
    3030                'title' => array(
    3131                    'title' => __('Title', 'bob-pay'),
     
    3636                )
    3737            ],
    38             ...$this->form_fields
    39         ];
     38            $this->form_fields
     39        );
    4040    }
    4141
  • bob-pay/trunk/readme.txt

    r3033006 r3033043  
    55Tested up to: 6.1.1
    66Requires PHP: 7.0.0
    7 Stable tag: 1.0.13
     7Stable tag: 1.0.14
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    5050== Changelog ==
    5151
     52= 1.0.14 =
     53Bug fix
     54
    5255= 1.0.13 =
    5356Bug fix
Note: See TracChangeset for help on using the changeset viewer.