Changeset 3246420
- Timestamp:
- 02/25/2025 11:53:43 AM (13 months ago)
- Location:
- icount
- Files:
-
- 22 added
- 3 edited
- 10 copied
-
tags/2.0.3 (added)
-
tags/2.0.3/assets (added)
-
tags/2.0.3/assets/css (added)
-
tags/2.0.3/assets/css/admin_settings.css (added)
-
tags/2.0.3/assets/images (added)
-
tags/2.0.3/assets/images/icount.png (added)
-
tags/2.0.3/assets/js (added)
-
tags/2.0.3/assets/js/admin_settings.js (added)
-
tags/2.0.3/assets/js/block_element.js (added)
-
tags/2.0.3/assets/js/checkout.js (added)
-
tags/2.0.3/icount-payment-gateway.php (added)
-
tags/2.0.3/includes (added)
-
tags/2.0.3/includes/WC_ICount_ENUM.php (added)
-
tags/2.0.3/includes/WC_ICount_Gateway.php (added)
-
tags/2.0.3/includes/WC_ICount_Locker.php (added)
-
tags/2.0.3/includes/WC_ICount_Logger.php (added)
-
tags/2.0.3/includes/WC_ICount_PaymentMethodType.php (added)
-
tags/2.0.3/index.php (added)
-
tags/2.0.3/languages (added)
-
tags/2.0.3/languages/icount-payment-gateway-he_IL.mo (added)
-
tags/2.0.3/languages/icount-payment-gateway-he_IL.po (added)
-
tags/2.0.3/readme.txt (added)
-
tags/2.0.3/trunk (copied) (copied from icount/trunk)
-
tags/2.0.3/trunk/assets (copied) (copied from icount/trunk/assets)
-
tags/2.0.3/trunk/assets/js/checkout.js (copied) (copied from icount/trunk/assets/js/checkout.js)
-
tags/2.0.3/trunk/icount-payment-gateway.php (copied) (copied from icount/trunk/icount-payment-gateway.php) (2 diffs)
-
tags/2.0.3/trunk/includes (copied) (copied from icount/trunk/includes)
-
tags/2.0.3/trunk/includes/WC_ICount_Gateway.php (copied) (copied from icount/trunk/includes/WC_ICount_Gateway.php) (2 diffs)
-
tags/2.0.3/trunk/includes/WC_ICount_Locker.php (copied) (copied from icount/trunk/includes/WC_ICount_Locker.php)
-
tags/2.0.3/trunk/index.php (copied) (copied from icount/trunk/index.php)
-
tags/2.0.3/trunk/languages (copied) (copied from icount/trunk/languages)
-
tags/2.0.3/trunk/readme.txt (copied) (copied from icount/trunk/readme.txt) (1 diff)
-
trunk/icount-payment-gateway.php (modified) (2 diffs)
-
trunk/includes/WC_ICount_Gateway.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
icount/tags/2.0.3/trunk/icount-payment-gateway.php
r3242516 r3246420 6 6 * Plugin Name: iCount Payment Gateway 7 7 * Description: WooCommerce integration for iCount Payment Gateway. 8 * Version: 2.0. 28 * Version: 2.0.3 9 9 * RequiresPHP: 7.4 10 10 * Author: iCount Systems … … 173 173 static function () { 174 174 if ( is_checkout() ) { 175 wp_enqueue_script _module('wpi-modal-script', plugin_dir_url( __FILE__ ) . 'assets/js/checkout.js', array('jquery'), '1.0.1', true);175 wp_enqueue_script('wpi-modal-script', plugin_dir_url( __FILE__ ) . 'assets/js/checkout.js', array('jquery'), '1.0.1', true); 176 176 wp_enqueue_style('wpi-modal-style', plugin_dir_url( __FILE__ ) . 'assets/css/admin_settings.css'); 177 177 } -
icount/tags/2.0.3/trunk/includes/WC_ICount_Gateway.php
r3242516 r3246420 303 303 'wc_order_id' => $order->get_id(), 304 304 'paypage_id' => (int)$this->get_option('paypage_id'), 305 'lang' => (substr(get_bloginfo("language"), 0, 2) == 'he' ? 'he' : 'en'), 305 306 'ipn_url' => add_query_arg( 306 307 array_map( … … 966 967 'wc_order_id' => $order->get_id(), 967 968 'paypage_id' => (int)$this->get_option('paypage_id'), 969 'lang' => (substr(get_bloginfo("language"), 0, 2) == 'he' ? 'he' : 'en'), 968 970 'ipn_url' => add_query_arg( 969 971 array_map( -
icount/tags/2.0.3/trunk/readme.txt
r3242516 r3246420 4 4 Requires at least: 5.0 5 5 Tested up to: 6.7.1 6 Stable tag: 2.0. 26 Stable tag: 2.0.3 7 7 Requires PHP: 7.4 8 8 License: GPLv2 or later -
icount/trunk/icount-payment-gateway.php
r3242516 r3246420 6 6 * Plugin Name: iCount Payment Gateway 7 7 * Description: WooCommerce integration for iCount Payment Gateway. 8 * Version: 2.0. 28 * Version: 2.0.3 9 9 * RequiresPHP: 7.4 10 10 * Author: iCount Systems … … 173 173 static function () { 174 174 if ( is_checkout() ) { 175 wp_enqueue_script _module('wpi-modal-script', plugin_dir_url( __FILE__ ) . 'assets/js/checkout.js', array('jquery'), '1.0.1', true);175 wp_enqueue_script('wpi-modal-script', plugin_dir_url( __FILE__ ) . 'assets/js/checkout.js', array('jquery'), '1.0.1', true); 176 176 wp_enqueue_style('wpi-modal-style', plugin_dir_url( __FILE__ ) . 'assets/css/admin_settings.css'); 177 177 } -
icount/trunk/includes/WC_ICount_Gateway.php
r3242516 r3246420 303 303 'wc_order_id' => $order->get_id(), 304 304 'paypage_id' => (int)$this->get_option('paypage_id'), 305 'lang' => (substr(get_bloginfo("language"), 0, 2) == 'he' ? 'he' : 'en'), 305 306 'ipn_url' => add_query_arg( 306 307 array_map( … … 966 967 'wc_order_id' => $order->get_id(), 967 968 'paypage_id' => (int)$this->get_option('paypage_id'), 969 'lang' => (substr(get_bloginfo("language"), 0, 2) == 'he' ? 'he' : 'en'), 968 970 'ipn_url' => add_query_arg( 969 971 array_map( -
icount/trunk/readme.txt
r3242516 r3246420 4 4 Requires at least: 5.0 5 5 Tested up to: 6.7.1 6 Stable tag: 2.0. 26 Stable tag: 2.0.3 7 7 Requires PHP: 7.4 8 8 License: GPLv2 or later
Note: See TracChangeset
for help on using the changeset viewer.