Changeset 2711190
- Timestamp:
- 04/18/2022 07:05:37 PM (4 years ago)
- Location:
- simple-payment
- Files:
-
- 6 edited
- 1 copied
-
tags/2.2.0 (copied) (copied from simple-payment/trunk)
-
tags/2.2.0/readme.txt (modified) (1 diff)
-
tags/2.2.0/simple-payment-plugin.php (modified) (1 diff)
-
tags/2.2.0/vendor/yalla-ya/simple-payment/Engines/iCount.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/simple-payment-plugin.php (modified) (1 diff)
-
trunk/vendor/yalla-ya/simple-payment/Engines/iCount.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
simple-payment/tags/2.2.0/readme.txt
r2711181 r2711190 5 5 Requires at least: 4.6 6 6 Tested up to: 5.9.1 7 Stable tag: 2. 1.97 Stable tag: 2.2.0 8 8 Requires PHP: 5.4 9 9 License: GPLv2 or later -
simple-payment/tags/2.2.0/simple-payment-plugin.php
r2711181 r2711190 4 4 * Plugin URI: https://simple-payment.yalla-ya.com 5 5 * Description: Simple Payment enables integration with multiple payment gateways, and customize multiple payment forms. 6 * Version: 2. 1.96 * Version: 2.2.0 7 7 * Author: Ido Kobelkowsky / yalla ya! 8 8 * Author URI: https://github.com/idokd -
simple-payment/tags/2.2.0/vendor/yalla-ya/simple-payment/Engines/iCount.php
r2711181 r2711190 58 58 $service = 'recurr'; 59 59 $post[ 'items' ] = $this->items( $params ); 60 $doctype = $this->param( 'doc_type' ); 61 if (!$doctype || $doctype == 'none') return($params); 62 $post[ 'doc_title' ] = $params[ SimplePayment::PRODUCT ]; 63 $post[ 'doctype' ] = $doctype; 60 $post[ 'doctype' ] = $this->param( 'doc_type' ); 64 61 $post[ 'currency' ] = $post['currency_code']; 65 62 $post[ 'issue_every' ] = $subscription; 63 64 // TODO: support: start_date, num_of_payments 65 $post[ 'tax_exempt' ] = $this->param( 'doc_vat' ) == 'exempt'; 66 $post[ 'incvat' ] = $this->param( 'doc_vat' ) == 'include'; 66 67 if ( isset( $params[ SimplePayment::LANGUAGE ] ) ) $post[ 'lang' ] = $params[ SimplePayment::LANGUAGE ]; 67 68 if ( $this->param( 'email_document' ) ) { -
simple-payment/trunk/readme.txt
r2711181 r2711190 5 5 Requires at least: 4.6 6 6 Tested up to: 5.9.1 7 Stable tag: 2. 1.97 Stable tag: 2.2.0 8 8 Requires PHP: 5.4 9 9 License: GPLv2 or later -
simple-payment/trunk/simple-payment-plugin.php
r2711181 r2711190 4 4 * Plugin URI: https://simple-payment.yalla-ya.com 5 5 * Description: Simple Payment enables integration with multiple payment gateways, and customize multiple payment forms. 6 * Version: 2. 1.96 * Version: 2.2.0 7 7 * Author: Ido Kobelkowsky / yalla ya! 8 8 * Author URI: https://github.com/idokd -
simple-payment/trunk/vendor/yalla-ya/simple-payment/Engines/iCount.php
r2711181 r2711190 58 58 $service = 'recurr'; 59 59 $post[ 'items' ] = $this->items( $params ); 60 $doctype = $this->param( 'doc_type' ); 61 if (!$doctype || $doctype == 'none') return($params); 62 $post[ 'doc_title' ] = $params[ SimplePayment::PRODUCT ]; 63 $post[ 'doctype' ] = $doctype; 60 $post[ 'doctype' ] = $this->param( 'doc_type' ); 64 61 $post[ 'currency' ] = $post['currency_code']; 65 62 $post[ 'issue_every' ] = $subscription; 63 64 // TODO: support: start_date, num_of_payments 65 $post[ 'tax_exempt' ] = $this->param( 'doc_vat' ) == 'exempt'; 66 $post[ 'incvat' ] = $this->param( 'doc_vat' ) == 'include'; 66 67 if ( isset( $params[ SimplePayment::LANGUAGE ] ) ) $post[ 'lang' ] = $params[ SimplePayment::LANGUAGE ]; 67 68 if ( $this->param( 'email_document' ) ) {
Note: See TracChangeset
for help on using the changeset viewer.