Changeset 2710713
- Timestamp:
- 04/17/2022 12:00:55 PM (4 years ago)
- Location:
- simple-payment
- Files:
-
- 10 edited
- 1 copied
-
tags/2.1.6 (copied) (copied from simple-payment/trunk)
-
tags/2.1.6/admin/transaction-list-table.php (modified) (2 diffs)
-
tags/2.1.6/readme.txt (modified) (1 diff)
-
tags/2.1.6/simple-payment-plugin.php (modified) (1 diff)
-
tags/2.1.6/vendor/yalla-ya/simple-payment/Engines/Cardcom.php (modified) (1 diff)
-
tags/2.1.6/vendor/yalla-ya/simple-payment/Engines/iCredit.php (modified) (1 diff)
-
trunk/admin/transaction-list-table.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/simple-payment-plugin.php (modified) (1 diff)
-
trunk/vendor/yalla-ya/simple-payment/Engines/Cardcom.php (modified) (1 diff)
-
trunk/vendor/yalla-ya/simple-payment/Engines/iCredit.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
simple-payment/tags/2.1.6/admin/transaction-list-table.php
r2474815 r2710713 78 78 public static function get_transactions( $per_page = 5, $page_number = 1, $instance = null, $count = false) { 79 79 global $wpdb; 80 $orderby = 'id'; 81 $order = 'DESC'; 80 82 if ($instance && !self::$details) { 81 83 $orderby = $instance->get_pagination_arg('orderby'); 82 84 $order = $instance->get_pagination_arg('order'); 83 } else {84 $orderby = 'id';85 $order = 'DESC';86 85 } 87 86 if ($count) $sql = "SELECT COUNT(*) FROM ".self::$table_name; … … 325 324 $this->process_bulk_action(); 326 325 327 if ($this->is_export()) $per_page = -1; 328 else { 326 if ($this->is_export()) { 327 $per_page = -1; 328 $current_page = 0; 329 } else { 329 330 $screen = get_current_screen(); 330 331 $per_page = get_user_meta(get_current_user_id(), $screen->get_option('per_page', 'option'), true); -
simple-payment/tags/2.1.6/readme.txt
r2697688 r2710713 5 5 Requires at least: 4.6 6 6 Tested up to: 5.9.1 7 Stable tag: 2.1. 57 Stable tag: 2.1.6 8 8 Requires PHP: 5.4 9 9 License: GPLv2 or later -
simple-payment/tags/2.1.6/simple-payment-plugin.php
r2697688 r2710713 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. 56 * Version: 2.1.6 7 7 * Author: Ido Kobelkowsky / yalla ya! 8 8 * Author URI: https://github.com/idokd -
simple-payment/tags/2.1.6/vendor/yalla-ya/simple-payment/Engines/Cardcom.php
r2697688 r2710713 93 93 'token' => $token 94 94 ]); 95 if ( $this->confirmation_code ) return( $this->confirmation_code ); 95 96 $operation = isset($response['Operation']) ? $response['Operation'] : null; 96 97 $code = isset($response['OperationResponse']) ? $response['OperationResponse'] : 999; -
simple-payment/tags/2.1.6/vendor/yalla-ya/simple-payment/Engines/iCredit.php
r2281947 r2710713 72 72 ]); 73 73 $code = isset($response['AuthNum']) ? $response['AuthNum'] : null; 74 if ($code) return($code); 74 if ($code) { 75 $this->confirmation_code = $code; 76 return( $code ); 77 } 75 78 throw new Exception(isset($response['Status']) ? $response['Status'] : 'DID_NOT_VERIFY', $code); 76 79 } -
simple-payment/trunk/admin/transaction-list-table.php
r2474815 r2710713 78 78 public static function get_transactions( $per_page = 5, $page_number = 1, $instance = null, $count = false) { 79 79 global $wpdb; 80 $orderby = 'id'; 81 $order = 'DESC'; 80 82 if ($instance && !self::$details) { 81 83 $orderby = $instance->get_pagination_arg('orderby'); 82 84 $order = $instance->get_pagination_arg('order'); 83 } else {84 $orderby = 'id';85 $order = 'DESC';86 85 } 87 86 if ($count) $sql = "SELECT COUNT(*) FROM ".self::$table_name; … … 325 324 $this->process_bulk_action(); 326 325 327 if ($this->is_export()) $per_page = -1; 328 else { 326 if ($this->is_export()) { 327 $per_page = -1; 328 $current_page = 0; 329 } else { 329 330 $screen = get_current_screen(); 330 331 $per_page = get_user_meta(get_current_user_id(), $screen->get_option('per_page', 'option'), true); -
simple-payment/trunk/readme.txt
r2697688 r2710713 5 5 Requires at least: 4.6 6 6 Tested up to: 5.9.1 7 Stable tag: 2.1. 57 Stable tag: 2.1.6 8 8 Requires PHP: 5.4 9 9 License: GPLv2 or later -
simple-payment/trunk/simple-payment-plugin.php
r2697688 r2710713 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. 56 * Version: 2.1.6 7 7 * Author: Ido Kobelkowsky / yalla ya! 8 8 * Author URI: https://github.com/idokd -
simple-payment/trunk/vendor/yalla-ya/simple-payment/Engines/Cardcom.php
r2697688 r2710713 93 93 'token' => $token 94 94 ]); 95 if ( $this->confirmation_code ) return( $this->confirmation_code ); 95 96 $operation = isset($response['Operation']) ? $response['Operation'] : null; 96 97 $code = isset($response['OperationResponse']) ? $response['OperationResponse'] : 999; -
simple-payment/trunk/vendor/yalla-ya/simple-payment/Engines/iCredit.php
r2281947 r2710713 72 72 ]); 73 73 $code = isset($response['AuthNum']) ? $response['AuthNum'] : null; 74 if ($code) return($code); 74 if ($code) { 75 $this->confirmation_code = $code; 76 return( $code ); 77 } 75 78 throw new Exception(isset($response['Status']) ? $response['Status'] : 'DID_NOT_VERIFY', $code); 76 79 }
Note: See TracChangeset
for help on using the changeset viewer.