Changeset 2733393
- Timestamp:
- 05/29/2022 09:52:33 AM (4 years ago)
- Location:
- simple-payment
- Files:
-
- 8 edited
- 1 copied
-
tags/2.2.7 (copied) (copied from simple-payment/trunk)
-
tags/2.2.7/languages/simple-payment.pot (modified) (2 diffs)
-
tags/2.2.7/readme.txt (modified) (1 diff)
-
tags/2.2.7/simple-payment-plugin.php (modified) (1 diff)
-
tags/2.2.7/vendor/yalla-ya/simple-payment/Engines/Engine.php (modified) (2 diffs)
-
trunk/languages/simple-payment.pot (modified) (2 diffs)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/simple-payment-plugin.php (modified) (1 diff)
-
trunk/vendor/yalla-ya/simple-payment/Engines/Engine.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
simple-payment/tags/2.2.7/languages/simple-payment.pot
r2733391 r2733393 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Simple Payment 2.2. 5\n"5 "Project-Id-Version: Simple Payment 2.2.6\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/simple-payment\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2022-05-29T09: 40:10+00:00\n"12 "POT-Creation-Date: 2022-05-29T09:51:34+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.6.0\n" -
simple-payment/tags/2.2.7/readme.txt
r2733391 r2733393 5 5 Requires at least: 4.6 6 6 Tested up to: 6.0 7 Stable tag: 2.2. 67 Stable tag: 2.2.7 8 8 Requires PHP: 5.4 9 9 License: GPLv2 or later -
simple-payment/tags/2.2.7/simple-payment-plugin.php
r2733391 r2733393 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.2. 66 * Version: 2.2.7 7 7 * Author: Ido Kobelkowsky / yalla ya! 8 8 * Author URI: https://github.com/idokd -
simple-payment/tags/2.2.7/vendor/yalla-ya/simple-payment/Engines/Engine.php
r2730843 r2733393 106 106 protected function save( $params ) { 107 107 if ( !isset( $params[ 'transaction_id' ] ) && $this->transaction ) $params[ 'transaction_id' ] = $this->transaction; 108 return( $this->handler->save( $params, s elf::$name ) );108 return( $this->handler->save( $params, static::$name ) ); 109 109 } 110 110 … … 135 135 if (isset($params['target']) && strpos($url, 'target') === false) $qry['target'] = $params['target']; 136 136 if (isset($params['redirect_url']) && strpos($url, 'redirect_url') === false) $qry['redirect_url'] = $params['redirect_url']; 137 return($url.(strpos($url, '?') ? '&' : '?').'op='.$type.'&engine='. s elf::$name . ($qry ? '&'.http_build_query($qry) : ''));137 return($url.(strpos($url, '?') ? '&' : '?').'op='.$type.'&engine='. static::$name . ($qry ? '&'.http_build_query($qry) : '')); 138 138 } 139 139 -
simple-payment/trunk/languages/simple-payment.pot
r2733391 r2733393 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Simple Payment 2.2. 5\n"5 "Project-Id-Version: Simple Payment 2.2.6\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/simple-payment\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2022-05-29T09: 40:10+00:00\n"12 "POT-Creation-Date: 2022-05-29T09:51:34+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.6.0\n" -
simple-payment/trunk/readme.txt
r2733391 r2733393 5 5 Requires at least: 4.6 6 6 Tested up to: 6.0 7 Stable tag: 2.2. 67 Stable tag: 2.2.7 8 8 Requires PHP: 5.4 9 9 License: GPLv2 or later -
simple-payment/trunk/simple-payment-plugin.php
r2733391 r2733393 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.2. 66 * Version: 2.2.7 7 7 * Author: Ido Kobelkowsky / yalla ya! 8 8 * Author URI: https://github.com/idokd -
simple-payment/trunk/vendor/yalla-ya/simple-payment/Engines/Engine.php
r2730843 r2733393 106 106 protected function save( $params ) { 107 107 if ( !isset( $params[ 'transaction_id' ] ) && $this->transaction ) $params[ 'transaction_id' ] = $this->transaction; 108 return( $this->handler->save( $params, s elf::$name ) );108 return( $this->handler->save( $params, static::$name ) ); 109 109 } 110 110 … … 135 135 if (isset($params['target']) && strpos($url, 'target') === false) $qry['target'] = $params['target']; 136 136 if (isset($params['redirect_url']) && strpos($url, 'redirect_url') === false) $qry['redirect_url'] = $params['redirect_url']; 137 return($url.(strpos($url, '?') ? '&' : '?').'op='.$type.'&engine='. s elf::$name . ($qry ? '&'.http_build_query($qry) : ''));137 return($url.(strpos($url, '?') ? '&' : '?').'op='.$type.'&engine='. static::$name . ($qry ? '&'.http_build_query($qry) : '')); 138 138 } 139 139
Note: See TracChangeset
for help on using the changeset viewer.