Plugin Directory

Changeset 3406424


Ignore:
Timestamp:
12/01/2025 03:50:14 AM (4 months ago)
Author:
easypayment
Message:

tags/1.0.5

Location:
payment-gateway-for-authorize-net-for-woocommerce
Files:
58 added
2 edited

Legend:

Unmodified
Added
Removed
  • payment-gateway-for-authorize-net-for-woocommerce/trunk/payment-gateway-for-authorizenet-for-woocommerce.php

    r3380104 r3406424  
    77 * Author: easypayment
    88 * Author URI: https://profiles.wordpress.org/easypayment/
    9  * Version: 1.0.4
     9 * Version: 1.0.5
    1010 * Requires at least: 5.6
    11  * Tested up to: 6.8.3
     11 * Tested up to: 6.9
    1212 * Requires PHP: 7.4
    1313 * Text Domain: payment-gateway-for-authorize-net-for-woocommerce
    1414 * Domain Path: /languages/
    1515 * WC requires at least: 6.0
    16  * WC tested up to: 10.2.2
     16 * WC tested up to: 10.3.5
    1717 * Requires Plugins: woocommerce
    1818 * License: GPLv2 or later
     
    2121if ( ! defined( 'ABSPATH' ) ) exit;
    2222
    23 define('EASYAUTHNET_AUTHORIZENET_VERSION', '1.0.4');
     23if (!defined('EASYAUTHNET_AUTHORIZENET_VERSION')) {
     24    define('EASYAUTHNET_AUTHORIZENET_VERSION', '1.0.5');
     25}
    2426define('EASYAUTHNET_AUTHORIZENET_PLUGIN_FILE', __FILE__);
    2527define('EASYAUTHNET_AUTHORIZENET_PLUGIN_PATH', plugin_dir_path(__FILE__));
     
    3133    define('EASYAUTHNET_AUTHORIZENET_CUSTOMER_PROFILE_ID', '_easyauthnet_authorizenet_customer_profile_id');
    3234}
    33 
     35if (!defined('EASYAUTHNET_AUTHORIZENET_BASENAME')) {
     36    define('EASYAUTHNET_AUTHORIZENET_BASENAME', plugin_basename(__FILE__));
     37}
     38require_once EASYAUTHNET_AUTHORIZENET_PLUGIN_PATH . 'payment-gateway-for-authorizenet-for-woocommerce-admin.php';
    3439add_action('plugins_loaded', 'easyauthnet_authorizenet_init');
    3540add_filter('woocommerce_payment_gateways', 'easyauthnet_woocommerce_payment_gateways', 10, 1);
  • payment-gateway-for-authorize-net-for-woocommerce/trunk/readme.txt

    r3380104 r3406424  
    33Tags: authorize.net, credit card, visa 
    44Requires at least: 5.6 
    5 Tested up to: 6.8.3 
     5Tested up to: 6.9
    66Requires PHP: 7.4 
    7 Stable tag: 1.0.4 
     7Stable tag: 1.0.5 
    88License: GPLv2 or later 
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html 
     
    111111== Changelog ==
    112112
     113= 1.0.5 =
     114* Added - Compatibility with WordPress 6.9.
     115
    113116= 1.0.4 =
    114117* Improved Gateway Settings UI.
Note: See TracChangeset for help on using the changeset viewer.