Plugin Directory

Changeset 3330015


Ignore:
Timestamp:
07/18/2025 06:00:39 AM (9 months ago)
Author:
pluginable
Message:

VERSION 1.0.6 - Fixed compatibility issues with PHP 8 and above.

Location:
bank-transfer-bacs-through-stripe
Files:
712 added
4 edited

Legend:

Unmodified
Added
Removed
  • bank-transfer-bacs-through-stripe/trunk/changelog.txt

    r3325130 r3330015  
    11*** Stipe BACS Bank Transfer Payment Gateway ***
    22
     32025-07-18 - version 1.0.6
     4* Fixed compatibility issues with PHP 8 and above.
    352025-07-09 - version 1.0.5
    46* Stripe Library Updated to v17.4.
  • bank-transfer-bacs-through-stripe/trunk/includes/class-pio-stripe-bacs-gateway.php

    r3321873 r3330015  
    1717 * This class is for payment gateway.
    1818 *
    19  * @since      1.0.0
     19 * @since      1.0.6
    2020 * @package    Pio_Stripe_Bacs
    2121 * @subpackage Pio_Stripe_Bacs/includes
    2222 */
    2323class PIO_Stripe_Bacs_Gateway extends WC_Payment_Gateway {
     24
     25    /**
     26     * Stripe webhook endpoint URL.
     27     *
     28     * @var string
     29     */
     30    protected $stripe_webhook_url;
     31
     32    /**
     33     * Indicates whether Stripe is in test mode.
     34     *
     35     * @var bool
     36     */
     37    protected $stripe_is_test = true;
     38
     39    /**
     40     * Stripe live publishable API key.
     41     *
     42     * @var string
     43     */
     44    protected $stripe_live_publish_key;
     45
     46    /**
     47     * Stripe live secret API key.
     48     *
     49     * @var string
     50     */
     51    protected $stripe_live_secret_key;
     52
     53    /**
     54     * Stripe live webhook secret.
     55     *
     56     * @var string
     57     */
     58    protected $stripe_live_webhook_secret;
     59
     60    /**
     61     * Stripe bank transfer type.
     62     *
     63     * @var string
     64     */
     65    protected $stripe_bank_transfer_type;
     66
     67    /**
     68     * EU country code used for Stripe bank transfer type.
     69     *
     70     * @var string
     71     */
     72    protected $stripe_bank_transfer_type_eu_country_code;
     73
     74    /**
     75     * Stripe test publishable API key.
     76     *
     77     * @var string
     78     */
     79    protected $stripe_test_publish_key;
     80
     81    /**
     82     * Stripe test secret API key.
     83     *
     84     * @var string
     85     */
     86    protected $stripe_test_secret_key;
     87
     88    /**
     89     * Stripe test webhook secret.
     90     *
     91     * @var string
     92     */
     93    protected $stripe_test_webhook_secret;
     94
     95    /**
     96     * Stripe PHP SDK object.
     97     *
     98     * @var \Stripe\StripeClient
     99     */
     100    protected $stripe_obj;
    24101
    25102    /**
  • bank-transfer-bacs-through-stripe/trunk/pio-stripe-bacs.php

    r3325130 r3330015  
    44 *
    55 * @link              https://pluginable.dev/
    6  * @since             1.0.5
     6 * @since             1.0.6
    77 * @package           Pio_Stripe_Bacs
    88 *
     
    1111 * Plugin URI:        https://pluginable.dev/?ref=bank-transfer-bacs-through-stripe
    1212 * Description:       Enabling you to facilitate bank you customer transfers as a payment option through Stripe generated bank accounts.
    13  * Version:           1.0.5
     13 * Version:           1.0.6
    1414 * Author:            Pluginable.dev
    1515 * Author URI:        https://pluginable.dev/
     
    2828 * Currently plugin version.
    2929 */
    30 define( 'PIO_STRIPE_BACS_VERSION', '1.0.5' );
     30define( 'PIO_STRIPE_BACS_VERSION', '1.0.6' );
    3131
    3232define( 'PIO_STRIPE_BACS_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
  • bank-transfer-bacs-through-stripe/trunk/readme.txt

    r3325139 r3330015  
    3737
    3838== Changelog ==
     39= 1.0.6 =
     40* Fixed compatibility issues with PHP 8 and above.
    3941= 1.0.5 =
    4042* Stripe Library Updated to v17.4.
Note: See TracChangeset for help on using the changeset viewer.