Changeset 2325086
- Timestamp:
- 06/16/2020 12:07:16 PM (6 years ago)
- Location:
- cardgate
- Files:
-
- 46 edited
- 1 copied
-
tags/3.1.17 (copied) (copied from cardgate/trunk)
-
tags/3.1.17/cardgate.php (modified) (3 diffs)
-
tags/3.1.17/classes/CGP_Common_Gateway.php (modified) (1 diff)
-
tags/3.1.17/classes/WC_CardgateAfterpay.php (modified) (1 diff)
-
tags/3.1.17/classes/WC_CardgateBancontact.php (modified) (1 diff)
-
tags/3.1.17/classes/WC_CardgateBanktransfer.php (modified) (1 diff)
-
tags/3.1.17/classes/WC_CardgateBillink.php (modified) (1 diff)
-
tags/3.1.17/classes/WC_CardgateBitcoin.php (modified) (1 diff)
-
tags/3.1.17/classes/WC_CardgateCreditcard.php (modified) (1 diff)
-
tags/3.1.17/classes/WC_CardgateDirectDebit.php (modified) (1 diff)
-
tags/3.1.17/classes/WC_CardgateGiftcard.php (modified) (1 diff)
-
tags/3.1.17/classes/WC_CardgateGiropay.php (modified) (1 diff)
-
tags/3.1.17/classes/WC_CardgateIdeal.php (modified) (1 diff)
-
tags/3.1.17/classes/WC_CardgateIdealqr.php (modified) (1 diff)
-
tags/3.1.17/classes/WC_CardgateKlarna.php (modified) (1 diff)
-
tags/3.1.17/classes/WC_CardgateMistercash.php (modified) (1 diff)
-
tags/3.1.17/classes/WC_CardgateOnlineueberweisen.php (modified) (1 diff)
-
tags/3.1.17/classes/WC_CardgatePayPal.php (modified) (1 diff)
-
tags/3.1.17/classes/WC_CardgatePaysafecard.php (modified) (1 diff)
-
tags/3.1.17/classes/WC_CardgatePaysafecash.php (modified) (1 diff)
-
tags/3.1.17/classes/WC_CardgatePrzelewy24.php (modified) (1 diff)
-
tags/3.1.17/classes/WC_CardgateSofortbanking.php (modified) (1 diff)
-
tags/3.1.17/images/cardgate.png (modified) (previous)
-
tags/3.1.17/readme.txt (modified) (2 diffs)
-
trunk/cardgate.php (modified) (3 diffs)
-
trunk/classes/CGP_Common_Gateway.php (modified) (1 diff)
-
trunk/classes/WC_CardgateAfterpay.php (modified) (1 diff)
-
trunk/classes/WC_CardgateBancontact.php (modified) (1 diff)
-
trunk/classes/WC_CardgateBanktransfer.php (modified) (1 diff)
-
trunk/classes/WC_CardgateBillink.php (modified) (1 diff)
-
trunk/classes/WC_CardgateBitcoin.php (modified) (1 diff)
-
trunk/classes/WC_CardgateCreditcard.php (modified) (1 diff)
-
trunk/classes/WC_CardgateDirectDebit.php (modified) (1 diff)
-
trunk/classes/WC_CardgateGiftcard.php (modified) (1 diff)
-
trunk/classes/WC_CardgateGiropay.php (modified) (1 diff)
-
trunk/classes/WC_CardgateIdeal.php (modified) (1 diff)
-
trunk/classes/WC_CardgateIdealqr.php (modified) (1 diff)
-
trunk/classes/WC_CardgateKlarna.php (modified) (1 diff)
-
trunk/classes/WC_CardgateMistercash.php (modified) (1 diff)
-
trunk/classes/WC_CardgateOnlineueberweisen.php (modified) (1 diff)
-
trunk/classes/WC_CardgatePayPal.php (modified) (1 diff)
-
trunk/classes/WC_CardgatePaysafecard.php (modified) (1 diff)
-
trunk/classes/WC_CardgatePaysafecash.php (modified) (1 diff)
-
trunk/classes/WC_CardgatePrzelewy24.php (modified) (1 diff)
-
trunk/classes/WC_CardgateSofortbanking.php (modified) (1 diff)
-
trunk/images/cardgate.png (modified) (previous)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
cardgate/tags/3.1.17/cardgate.php
r2249399 r2325086 7 7 * Text Domain: cardgate 8 8 * Domain Path: /i18n/languages 9 * Version: 3.1.1 69 * Version: 3.1.17 10 10 * Requires at least: 4.4 11 11 * Author: CardGate … … 231 231 <form name="frmCardgate" action="' . $sAction_url . '" method="post">'; 232 232 $sHtml .= wp_nonce_field('action854', 'nonce134'); 233 $sHtml .= ' 234 <h2>' . '<img src="' . $icon_file . '" /> ' . __('CardGate Settings', 'cardgate') . '</h2>235 < b>Version ' . get_option('cardgate_version') . '</b>233 $sHtml .= '<img style="max-width:100px;" src="' . $icon_file . '" /> 234 <b>Version ' . get_option('cardgate_version') . '</b> 235 <h2>'. __('CardGate Settings', 'cardgate') . '</h2> 236 236 <table class="form-table"> 237 237 <tbody> … … 327 327 ?> 328 328 <div class="wrap"> 329 <h2> 330 <?php '<img src="' . $icon_file . '" /> ' . __('CardGate Payments','cardgate') ?> 329 <div><?php echo '<img style="max-width:100px;" src="' . $icon_file . '" /> ' ?></div> 330 <h2> 331 <?php echo __('CardGate Payments','cardgate') ?> 331 332 </h2> 332 333 -
cardgate/tags/3.1.17/classes/CGP_Common_Gateway.php
r2124579 r2325086 23 23 // //////////////////////////////////////////////// 24 24 public function __construct() { 25 $this->init_form_fields(); 26 $this->init_settings(); 27 $this->title = (isset($this->settings['title']) && !empty($this->settings['title']) ? $this->settings['title'] : $this->payment_name); 28 $this->description = $this->settings['description']; 29 30 add_filter ( 'woocommerce_gateway_icon', array($this, 'modify_icon'), 20, 2 ); 31 add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) ); 32 add_action( 'woocommerce_receipt_' . $this->id, array( $this, 'receiptPage' ) ); 25 33 } 26 34 -
cardgate/tags/3.1.17/classes/WC_CardgateAfterpay.php
r2046053 r2325086 21 21 22 22 public function __construct() { 23 24 $this->init_form_fields(); 25 $this->init_settings(); 26 $this->title = $this->payment_name; 27 $this->description = $this->settings['description']; 28 29 add_filter ( 'woocommerce_gateway_icon', array($this, 'modify_icon'), 20, 2 ); 30 add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) ); 31 add_action( 'woocommerce_receipt_' . $this->id, array( $this, 'receiptPage' ) ); 23 parent::__construct(); 32 24 } 33 25 } -
cardgate/tags/3.1.17/classes/WC_CardgateBancontact.php
r2046053 r2325086 21 21 22 22 public function __construct() { 23 24 $this->init_form_fields(); 25 $this->init_settings(); 26 $this->title = $this->payment_name; 27 $this->description = $this->settings['description']; 28 29 add_filter ( 'woocommerce_gateway_icon', array($this, 'modify_icon'), 20, 2 ); 30 add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) ); 31 add_action( 'woocommerce_receipt_' . $this->id, array( $this, 'receiptPage' ) ); 23 parent::__construct(); 32 24 } 33 25 } -
cardgate/tags/3.1.17/classes/WC_CardgateBanktransfer.php
r2046053 r2325086 21 21 22 22 public function __construct() { 23 24 $this->init_form_fields(); 25 $this->init_settings(); 26 $this->title = $this->payment_name; 27 $this->description = $this->settings['description']; 28 29 add_filter ( 'woocommerce_gateway_icon', array($this, 'modify_icon'), 20, 2 ); 30 add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) ); 31 add_action( 'woocommerce_receipt_' . $this->id, array( $this, 'receiptPage' ) ); 23 parent::__construct(); 32 24 } 33 25 } -
cardgate/tags/3.1.17/classes/WC_CardgateBillink.php
r2046053 r2325086 21 21 22 22 public function __construct() { 23 24 $this->init_form_fields(); 25 $this->init_settings(); 26 $this->title = $this->payment_name; 27 $this->description = $this->settings['description']; 28 29 add_filter ( 'woocommerce_gateway_icon', array($this, 'modify_icon'), 20, 2 ); 30 add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) ); 31 add_action( 'woocommerce_receipt_' . $this->id, array( $this, 'receiptPage' ) ); 23 parent::__construct(); 32 24 } 33 25 } -
cardgate/tags/3.1.17/classes/WC_CardgateBitcoin.php
r2046053 r2325086 21 21 22 22 public function __construct() { 23 24 $this->init_form_fields(); 25 $this->init_settings(); 26 $this->title = $this->payment_name; 27 $this->description = $this->settings['description']; 28 29 add_filter ( 'woocommerce_gateway_icon', array($this, 'modify_icon'), 20, 2 ); 30 add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) ); 31 add_action( 'woocommerce_receipt_' . $this->id, array( $this, 'receiptPage' ) ); 23 parent::__construct(); 32 24 } 33 25 } -
cardgate/tags/3.1.17/classes/WC_CardgateCreditcard.php
r2046053 r2325086 21 21 22 22 public function __construct() { 23 24 $this->init_form_fields(); 25 $this->init_settings(); 26 $this->title = $this->payment_name; 27 $this->description = $this->settings['description']; 28 29 add_filter ( 'woocommerce_gateway_icon', array($this, 'modify_icon'), 20, 2 ); 30 add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) ); 31 add_action( 'woocommerce_receipt_' . $this->id, array( $this, 'receiptPage' ) ); 23 parent::__construct(); 32 24 } 33 25 } -
cardgate/tags/3.1.17/classes/WC_CardgateDirectDebit.php
r2046053 r2325086 21 21 22 22 public function __construct() { 23 24 $this->init_form_fields(); 25 $this->init_settings(); 26 $this->title = $this->payment_name; 27 $this->description = $this->settings['description']; 28 29 add_filter ( 'woocommerce_gateway_icon', array($this, 'modify_icon'), 20, 2 ); 30 add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) ); 31 add_action( 'woocommerce_receipt_' . $this->id, array( $this, 'receiptPage' ) ); 23 parent::__construct(); 32 24 } 33 25 } -
cardgate/tags/3.1.17/classes/WC_CardgateGiftcard.php
r2046053 r2325086 21 21 22 22 public function __construct() { 23 24 $this->init_form_fields(); 25 $this->init_settings(); 26 $this->title = $this->payment_name; 27 $this->description = $this->settings['description']; 28 29 add_filter ( 'woocommerce_gateway_icon', array($this, 'modify_icon'), 20, 2 ); 30 add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) ); 31 add_action( 'woocommerce_receipt_' . $this->id, array( $this, 'receiptPage' ) ); 23 parent::__construct(); 32 24 } 33 25 } -
cardgate/tags/3.1.17/classes/WC_CardgateGiropay.php
r2046053 r2325086 21 21 22 22 public function __construct() { 23 24 $this->init_form_fields(); 25 $this->init_settings(); 26 $this->title = $this->payment_name; 27 $this->description = $this->settings['description']; 28 29 add_filter ( 'woocommerce_gateway_icon', array($this, 'modify_icon'), 20, 2 ); 30 add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) ); 31 add_action( 'woocommerce_receipt_' . $this->id, array( $this, 'receiptPage' ) ); 23 parent::__construct(); 32 24 } 33 25 } -
cardgate/tags/3.1.17/classes/WC_CardgateIdeal.php
r2046053 r2325086 21 21 22 22 public function __construct() { 23 24 $this->supports = array ('products'); 25 $this->init_form_fields(); 26 $this->init_settings(); 27 $this->title = $this->payment_name; 28 $this->description = $this->settings['description']; 29 30 add_filter ( 'woocommerce_gateway_icon', array($this, 'modify_icon'), 20, 2 ); 31 add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) ); 32 add_action( 'woocommerce_receipt_' . $this->id, array( $this, 'receiptPage' ) ); 23 parent::__construct(); 33 24 } 34 25 } -
cardgate/tags/3.1.17/classes/WC_CardgateIdealqr.php
r2046053 r2325086 21 21 22 22 public function __construct() { 23 24 $this->init_form_fields(); 25 $this->init_settings(); 26 $this->title = $this->payment_name; 27 $this->description = $this->settings['description']; 28 29 add_filter ( 'woocommerce_gateway_icon', array($this, 'modify_icon'), 20, 2 ); 30 add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) ); 31 add_action( 'woocommerce_receipt_' . $this->id, array( $this, 'receiptPage' ) ); 23 parent::__construct(); 32 24 } 33 25 } -
cardgate/tags/3.1.17/classes/WC_CardgateKlarna.php
r2046053 r2325086 21 21 22 22 public function __construct() { 23 24 $this->init_form_fields(); 25 $this->init_settings(); 26 $this->title = $this->payment_name; 27 $this->description = $this->settings['description']; 28 29 add_filter ( 'woocommerce_gateway_icon', array($this, 'modify_icon'), 20, 2 ); 30 add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) ); 31 add_action( 'woocommerce_receipt_' . $this->id, array( $this, 'receiptPage' ) ); 23 parent::__construct(); 32 24 } 33 25 } -
cardgate/tags/3.1.17/classes/WC_CardgateMistercash.php
r2046053 r2325086 21 21 22 22 public function __construct() { 23 24 $this->init_form_fields(); 25 $this->init_settings(); 26 $this->title = $this->payment_name; 27 $this->description = $this->settings['description']; 28 29 add_filter ( 'woocommerce_gateway_icon', array($this, 'modify_icon'), 20, 2 ); 30 add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) ); 31 add_action( 'woocommerce_receipt_' . $this->id, array( $this, 'receiptPage' ) ); 23 parent::__construct(); 32 24 } 33 25 } -
cardgate/tags/3.1.17/classes/WC_CardgateOnlineueberweisen.php
r2178570 r2325086 21 21 22 22 public function __construct() { 23 24 $this->init_form_fields(); 25 $this->init_settings(); 26 $this->title = $this->payment_name; 27 $this->description = $this->settings['description']; 28 29 add_filter ( 'woocommerce_gateway_icon', array($this, 'modify_icon'), 20, 2 ); 30 add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) ); 31 add_action( 'woocommerce_receipt_' . $this->id, array( $this, 'receiptPage' ) ); 23 parent::__construct(); 32 24 } 33 25 } -
cardgate/tags/3.1.17/classes/WC_CardgatePayPal.php
r2046053 r2325086 21 21 22 22 public function __construct() { 23 24 $this->init_form_fields(); 25 $this->init_settings(); 26 $this->title = $this->payment_name; 27 $this->description = $this->settings['description']; 28 29 add_filter ( 'woocommerce_gateway_icon', array($this, 'modify_icon'), 20, 2 ); 30 add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) ); 31 add_action( 'woocommerce_receipt_' . $this->id, array( $this, 'receiptPage' ) ); 23 parent::__construct(); 32 24 } 33 25 } -
cardgate/tags/3.1.17/classes/WC_CardgatePaysafecard.php
r2046053 r2325086 21 21 22 22 public function __construct() { 23 24 $this->init_form_fields(); 25 $this->init_settings(); 26 $this->title = $this->payment_name; 27 $this->description = $this->settings['description']; 28 29 add_filter ( 'woocommerce_gateway_icon', array($this, 'modify_icon'), 20, 2 ); 30 add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) ); 31 add_action( 'woocommerce_receipt_' . $this->id, array( $this, 'receiptPage' ) ); 23 parent::__construct(); 32 24 } 33 25 } -
cardgate/tags/3.1.17/classes/WC_CardgatePaysafecash.php
r2046053 r2325086 21 21 22 22 public function __construct() { 23 24 $this->init_form_fields(); 25 $this->init_settings(); 26 $this->title = $this->payment_name; 27 $this->description = $this->settings['description']; 28 29 add_filter ( 'woocommerce_gateway_icon', array($this, 'modify_icon'), 20, 2 ); 30 add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) ); 31 add_action( 'woocommerce_receipt_' . $this->id, array( $this, 'receiptPage' ) ); 23 parent::__construct(); 32 24 } 33 25 } -
cardgate/tags/3.1.17/classes/WC_CardgatePrzelewy24.php
r2046053 r2325086 21 21 22 22 public function __construct() { 23 24 $this->init_form_fields(); 25 $this->init_settings(); 26 $this->title = $this->payment_name; 27 $this->description = $this->settings['description']; 28 29 add_filter ( 'woocommerce_gateway_icon', array($this, 'modify_icon'), 20, 2 ); 30 add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) ); 31 add_action( 'woocommerce_receipt_' . $this->id, array( $this, 'receiptPage' ) ); 23 parent::__construct(); 32 24 } 33 25 } -
cardgate/tags/3.1.17/classes/WC_CardgateSofortbanking.php
r2046053 r2325086 21 21 22 22 public function __construct() { 23 24 $this->init_form_fields(); 25 $this->init_settings(); 26 $this->title = $this->payment_name; 27 $this->description = $this->settings['description']; 28 29 add_filter ( 'woocommerce_gateway_icon', array($this, 'modify_icon'), 20, 2 ); 30 add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) ); 31 add_action( 'woocommerce_receipt_' . $this->id, array( $this, 'receiptPage' ) ); 23 parent::__construct(); 32 24 } 33 25 } -
cardgate/tags/3.1.17/readme.txt
r2263257 r2325086 5 5 Requires at least: 4.2 6 6 Tested up to: 5.2 7 Stable tag: 3.1.1 67 Stable tag: 3.1.17 8 8 License: GPLv3 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 75 75 == Changelog == 76 76 77 = 3.1.17 = 78 * Fix: Payment method title 79 * new admin logo 80 77 81 = 3.1.16 = 78 82 * New pullConfig method implementation -
cardgate/trunk/cardgate.php
r2249399 r2325086 7 7 * Text Domain: cardgate 8 8 * Domain Path: /i18n/languages 9 * Version: 3.1.1 69 * Version: 3.1.17 10 10 * Requires at least: 4.4 11 11 * Author: CardGate … … 231 231 <form name="frmCardgate" action="' . $sAction_url . '" method="post">'; 232 232 $sHtml .= wp_nonce_field('action854', 'nonce134'); 233 $sHtml .= ' 234 <h2>' . '<img src="' . $icon_file . '" /> ' . __('CardGate Settings', 'cardgate') . '</h2>235 < b>Version ' . get_option('cardgate_version') . '</b>233 $sHtml .= '<img style="max-width:100px;" src="' . $icon_file . '" /> 234 <b>Version ' . get_option('cardgate_version') . '</b> 235 <h2>'. __('CardGate Settings', 'cardgate') . '</h2> 236 236 <table class="form-table"> 237 237 <tbody> … … 327 327 ?> 328 328 <div class="wrap"> 329 <h2> 330 <?php '<img src="' . $icon_file . '" /> ' . __('CardGate Payments','cardgate') ?> 329 <div><?php echo '<img style="max-width:100px;" src="' . $icon_file . '" /> ' ?></div> 330 <h2> 331 <?php echo __('CardGate Payments','cardgate') ?> 331 332 </h2> 332 333 -
cardgate/trunk/classes/CGP_Common_Gateway.php
r2124579 r2325086 23 23 // //////////////////////////////////////////////// 24 24 public function __construct() { 25 $this->init_form_fields(); 26 $this->init_settings(); 27 $this->title = (isset($this->settings['title']) && !empty($this->settings['title']) ? $this->settings['title'] : $this->payment_name); 28 $this->description = $this->settings['description']; 29 30 add_filter ( 'woocommerce_gateway_icon', array($this, 'modify_icon'), 20, 2 ); 31 add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) ); 32 add_action( 'woocommerce_receipt_' . $this->id, array( $this, 'receiptPage' ) ); 25 33 } 26 34 -
cardgate/trunk/classes/WC_CardgateAfterpay.php
r2046053 r2325086 21 21 22 22 public function __construct() { 23 24 $this->init_form_fields(); 25 $this->init_settings(); 26 $this->title = $this->payment_name; 27 $this->description = $this->settings['description']; 28 29 add_filter ( 'woocommerce_gateway_icon', array($this, 'modify_icon'), 20, 2 ); 30 add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) ); 31 add_action( 'woocommerce_receipt_' . $this->id, array( $this, 'receiptPage' ) ); 23 parent::__construct(); 32 24 } 33 25 } -
cardgate/trunk/classes/WC_CardgateBancontact.php
r2046053 r2325086 21 21 22 22 public function __construct() { 23 24 $this->init_form_fields(); 25 $this->init_settings(); 26 $this->title = $this->payment_name; 27 $this->description = $this->settings['description']; 28 29 add_filter ( 'woocommerce_gateway_icon', array($this, 'modify_icon'), 20, 2 ); 30 add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) ); 31 add_action( 'woocommerce_receipt_' . $this->id, array( $this, 'receiptPage' ) ); 23 parent::__construct(); 32 24 } 33 25 } -
cardgate/trunk/classes/WC_CardgateBanktransfer.php
r2046053 r2325086 21 21 22 22 public function __construct() { 23 24 $this->init_form_fields(); 25 $this->init_settings(); 26 $this->title = $this->payment_name; 27 $this->description = $this->settings['description']; 28 29 add_filter ( 'woocommerce_gateway_icon', array($this, 'modify_icon'), 20, 2 ); 30 add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) ); 31 add_action( 'woocommerce_receipt_' . $this->id, array( $this, 'receiptPage' ) ); 23 parent::__construct(); 32 24 } 33 25 } -
cardgate/trunk/classes/WC_CardgateBillink.php
r2046053 r2325086 21 21 22 22 public function __construct() { 23 24 $this->init_form_fields(); 25 $this->init_settings(); 26 $this->title = $this->payment_name; 27 $this->description = $this->settings['description']; 28 29 add_filter ( 'woocommerce_gateway_icon', array($this, 'modify_icon'), 20, 2 ); 30 add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) ); 31 add_action( 'woocommerce_receipt_' . $this->id, array( $this, 'receiptPage' ) ); 23 parent::__construct(); 32 24 } 33 25 } -
cardgate/trunk/classes/WC_CardgateBitcoin.php
r2046053 r2325086 21 21 22 22 public function __construct() { 23 24 $this->init_form_fields(); 25 $this->init_settings(); 26 $this->title = $this->payment_name; 27 $this->description = $this->settings['description']; 28 29 add_filter ( 'woocommerce_gateway_icon', array($this, 'modify_icon'), 20, 2 ); 30 add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) ); 31 add_action( 'woocommerce_receipt_' . $this->id, array( $this, 'receiptPage' ) ); 23 parent::__construct(); 32 24 } 33 25 } -
cardgate/trunk/classes/WC_CardgateCreditcard.php
r2046053 r2325086 21 21 22 22 public function __construct() { 23 24 $this->init_form_fields(); 25 $this->init_settings(); 26 $this->title = $this->payment_name; 27 $this->description = $this->settings['description']; 28 29 add_filter ( 'woocommerce_gateway_icon', array($this, 'modify_icon'), 20, 2 ); 30 add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) ); 31 add_action( 'woocommerce_receipt_' . $this->id, array( $this, 'receiptPage' ) ); 23 parent::__construct(); 32 24 } 33 25 } -
cardgate/trunk/classes/WC_CardgateDirectDebit.php
r2046053 r2325086 21 21 22 22 public function __construct() { 23 24 $this->init_form_fields(); 25 $this->init_settings(); 26 $this->title = $this->payment_name; 27 $this->description = $this->settings['description']; 28 29 add_filter ( 'woocommerce_gateway_icon', array($this, 'modify_icon'), 20, 2 ); 30 add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) ); 31 add_action( 'woocommerce_receipt_' . $this->id, array( $this, 'receiptPage' ) ); 23 parent::__construct(); 32 24 } 33 25 } -
cardgate/trunk/classes/WC_CardgateGiftcard.php
r2046053 r2325086 21 21 22 22 public function __construct() { 23 24 $this->init_form_fields(); 25 $this->init_settings(); 26 $this->title = $this->payment_name; 27 $this->description = $this->settings['description']; 28 29 add_filter ( 'woocommerce_gateway_icon', array($this, 'modify_icon'), 20, 2 ); 30 add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) ); 31 add_action( 'woocommerce_receipt_' . $this->id, array( $this, 'receiptPage' ) ); 23 parent::__construct(); 32 24 } 33 25 } -
cardgate/trunk/classes/WC_CardgateGiropay.php
r2046053 r2325086 21 21 22 22 public function __construct() { 23 24 $this->init_form_fields(); 25 $this->init_settings(); 26 $this->title = $this->payment_name; 27 $this->description = $this->settings['description']; 28 29 add_filter ( 'woocommerce_gateway_icon', array($this, 'modify_icon'), 20, 2 ); 30 add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) ); 31 add_action( 'woocommerce_receipt_' . $this->id, array( $this, 'receiptPage' ) ); 23 parent::__construct(); 32 24 } 33 25 } -
cardgate/trunk/classes/WC_CardgateIdeal.php
r2046053 r2325086 21 21 22 22 public function __construct() { 23 24 $this->supports = array ('products'); 25 $this->init_form_fields(); 26 $this->init_settings(); 27 $this->title = $this->payment_name; 28 $this->description = $this->settings['description']; 29 30 add_filter ( 'woocommerce_gateway_icon', array($this, 'modify_icon'), 20, 2 ); 31 add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) ); 32 add_action( 'woocommerce_receipt_' . $this->id, array( $this, 'receiptPage' ) ); 23 parent::__construct(); 33 24 } 34 25 } -
cardgate/trunk/classes/WC_CardgateIdealqr.php
r2046053 r2325086 21 21 22 22 public function __construct() { 23 24 $this->init_form_fields(); 25 $this->init_settings(); 26 $this->title = $this->payment_name; 27 $this->description = $this->settings['description']; 28 29 add_filter ( 'woocommerce_gateway_icon', array($this, 'modify_icon'), 20, 2 ); 30 add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) ); 31 add_action( 'woocommerce_receipt_' . $this->id, array( $this, 'receiptPage' ) ); 23 parent::__construct(); 32 24 } 33 25 } -
cardgate/trunk/classes/WC_CardgateKlarna.php
r2046053 r2325086 21 21 22 22 public function __construct() { 23 24 $this->init_form_fields(); 25 $this->init_settings(); 26 $this->title = $this->payment_name; 27 $this->description = $this->settings['description']; 28 29 add_filter ( 'woocommerce_gateway_icon', array($this, 'modify_icon'), 20, 2 ); 30 add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) ); 31 add_action( 'woocommerce_receipt_' . $this->id, array( $this, 'receiptPage' ) ); 23 parent::__construct(); 32 24 } 33 25 } -
cardgate/trunk/classes/WC_CardgateMistercash.php
r2046053 r2325086 21 21 22 22 public function __construct() { 23 24 $this->init_form_fields(); 25 $this->init_settings(); 26 $this->title = $this->payment_name; 27 $this->description = $this->settings['description']; 28 29 add_filter ( 'woocommerce_gateway_icon', array($this, 'modify_icon'), 20, 2 ); 30 add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) ); 31 add_action( 'woocommerce_receipt_' . $this->id, array( $this, 'receiptPage' ) ); 23 parent::__construct(); 32 24 } 33 25 } -
cardgate/trunk/classes/WC_CardgateOnlineueberweisen.php
r2178570 r2325086 21 21 22 22 public function __construct() { 23 24 $this->init_form_fields(); 25 $this->init_settings(); 26 $this->title = $this->payment_name; 27 $this->description = $this->settings['description']; 28 29 add_filter ( 'woocommerce_gateway_icon', array($this, 'modify_icon'), 20, 2 ); 30 add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) ); 31 add_action( 'woocommerce_receipt_' . $this->id, array( $this, 'receiptPage' ) ); 23 parent::__construct(); 32 24 } 33 25 } -
cardgate/trunk/classes/WC_CardgatePayPal.php
r2046053 r2325086 21 21 22 22 public function __construct() { 23 24 $this->init_form_fields(); 25 $this->init_settings(); 26 $this->title = $this->payment_name; 27 $this->description = $this->settings['description']; 28 29 add_filter ( 'woocommerce_gateway_icon', array($this, 'modify_icon'), 20, 2 ); 30 add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) ); 31 add_action( 'woocommerce_receipt_' . $this->id, array( $this, 'receiptPage' ) ); 23 parent::__construct(); 32 24 } 33 25 } -
cardgate/trunk/classes/WC_CardgatePaysafecard.php
r2046053 r2325086 21 21 22 22 public function __construct() { 23 24 $this->init_form_fields(); 25 $this->init_settings(); 26 $this->title = $this->payment_name; 27 $this->description = $this->settings['description']; 28 29 add_filter ( 'woocommerce_gateway_icon', array($this, 'modify_icon'), 20, 2 ); 30 add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) ); 31 add_action( 'woocommerce_receipt_' . $this->id, array( $this, 'receiptPage' ) ); 23 parent::__construct(); 32 24 } 33 25 } -
cardgate/trunk/classes/WC_CardgatePaysafecash.php
r2046053 r2325086 21 21 22 22 public function __construct() { 23 24 $this->init_form_fields(); 25 $this->init_settings(); 26 $this->title = $this->payment_name; 27 $this->description = $this->settings['description']; 28 29 add_filter ( 'woocommerce_gateway_icon', array($this, 'modify_icon'), 20, 2 ); 30 add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) ); 31 add_action( 'woocommerce_receipt_' . $this->id, array( $this, 'receiptPage' ) ); 23 parent::__construct(); 32 24 } 33 25 } -
cardgate/trunk/classes/WC_CardgatePrzelewy24.php
r2046053 r2325086 21 21 22 22 public function __construct() { 23 24 $this->init_form_fields(); 25 $this->init_settings(); 26 $this->title = $this->payment_name; 27 $this->description = $this->settings['description']; 28 29 add_filter ( 'woocommerce_gateway_icon', array($this, 'modify_icon'), 20, 2 ); 30 add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) ); 31 add_action( 'woocommerce_receipt_' . $this->id, array( $this, 'receiptPage' ) ); 23 parent::__construct(); 32 24 } 33 25 } -
cardgate/trunk/classes/WC_CardgateSofortbanking.php
r2046053 r2325086 21 21 22 22 public function __construct() { 23 24 $this->init_form_fields(); 25 $this->init_settings(); 26 $this->title = $this->payment_name; 27 $this->description = $this->settings['description']; 28 29 add_filter ( 'woocommerce_gateway_icon', array($this, 'modify_icon'), 20, 2 ); 30 add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) ); 31 add_action( 'woocommerce_receipt_' . $this->id, array( $this, 'receiptPage' ) ); 23 parent::__construct(); 32 24 } 33 25 } -
cardgate/trunk/readme.txt
r2263257 r2325086 5 5 Requires at least: 4.2 6 6 Tested up to: 5.2 7 Stable tag: 3.1.1 67 Stable tag: 3.1.17 8 8 License: GPLv3 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 75 75 == Changelog == 76 76 77 = 3.1.17 = 78 * Fix: Payment method title 79 * new admin logo 80 77 81 = 3.1.16 = 78 82 * New pullConfig method implementation
Note: See TracChangeset
for help on using the changeset viewer.