Changeset 2302697
- Timestamp:
- 05/11/2020 01:43:56 PM (6 years ago)
- Location:
- mobipaid
- Files:
-
- 48 added
- 4 edited
-
tags/1.0.1 (added)
-
tags/1.0.1/assets (added)
-
tags/1.0.1/assets/img (added)
-
tags/1.0.1/assets/img/mp-logo.png (added)
-
tags/1.0.1/changelog.txt (added)
-
tags/1.0.1/includes (added)
-
tags/1.0.1/includes/class-mobipaid-api.php (added)
-
tags/1.0.1/includes/class-mobipaid.php (added)
-
tags/1.0.1/index.php (added)
-
tags/1.0.1/languages (added)
-
tags/1.0.1/languages/mobipaid-ar.mo (added)
-
tags/1.0.1/languages/mobipaid-ar.po (added)
-
tags/1.0.1/languages/mobipaid-da_DK.mo (added)
-
tags/1.0.1/languages/mobipaid-da_DK.po (added)
-
tags/1.0.1/languages/mobipaid-de_DE.mo (added)
-
tags/1.0.1/languages/mobipaid-de_DE.po (added)
-
tags/1.0.1/languages/mobipaid-en_US.mo (added)
-
tags/1.0.1/languages/mobipaid-en_US.po (added)
-
tags/1.0.1/languages/mobipaid-es_ES.mo (added)
-
tags/1.0.1/languages/mobipaid-es_ES.po (added)
-
tags/1.0.1/languages/mobipaid-fi.mo (added)
-
tags/1.0.1/languages/mobipaid-fi.po (added)
-
tags/1.0.1/languages/mobipaid-fr_FR.mo (added)
-
tags/1.0.1/languages/mobipaid-fr_FR.po (added)
-
tags/1.0.1/languages/mobipaid-id_ID.mo (added)
-
tags/1.0.1/languages/mobipaid-id_ID.po (added)
-
tags/1.0.1/languages/mobipaid-it_IT.mo (added)
-
tags/1.0.1/languages/mobipaid-it_IT.po (added)
-
tags/1.0.1/languages/mobipaid-ja.mo (added)
-
tags/1.0.1/languages/mobipaid-ja.po (added)
-
tags/1.0.1/languages/mobipaid-ko_KR.mo (added)
-
tags/1.0.1/languages/mobipaid-ko_KR.po (added)
-
tags/1.0.1/languages/mobipaid-nl_NL.mo (added)
-
tags/1.0.1/languages/mobipaid-nl_NL.po (added)
-
tags/1.0.1/languages/mobipaid-pl_PL.mo (added)
-
tags/1.0.1/languages/mobipaid-pl_PL.po (added)
-
tags/1.0.1/languages/mobipaid-pt_PT.mo (added)
-
tags/1.0.1/languages/mobipaid-pt_PT.po (added)
-
tags/1.0.1/languages/mobipaid-ru_RU.mo (added)
-
tags/1.0.1/languages/mobipaid-ru_RU.po (added)
-
tags/1.0.1/languages/mobipaid-sv_SE.mo (added)
-
tags/1.0.1/languages/mobipaid-sv_SE.po (added)
-
tags/1.0.1/languages/mobipaid-tr_TR.mo (added)
-
tags/1.0.1/languages/mobipaid-tr_TR.po (added)
-
tags/1.0.1/languages/mobipaid-zh_CN.mo (added)
-
tags/1.0.1/languages/mobipaid-zh_CN.po (added)
-
tags/1.0.1/mobipaid.php (added)
-
tags/1.0.1/readme.txt (added)
-
trunk/changelog.txt (modified) (1 diff)
-
trunk/includes/class-mobipaid.php (modified) (1 diff)
-
trunk/mobipaid.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
mobipaid/trunk/changelog.txt
r2277209 r2302697 5 5 * accept payments via Mobipaid. 6 6 * support partial / full refund. 7 8 = 1.0.1 - 2020-05-11 = 9 * change the way of get payment status. -
mobipaid/trunk/includes/class-mobipaid.php
r2277209 r2302697 405 405 if ( ! empty( $token ) ) { 406 406 $this->log( 'get response from the gateway reponse url' ); 407 $response = get_query_var( 'response' ); 408 $response = json_decode( wp_unslash( $response ), true ); 407 $res_body = file_get_contents( 'php://input' ); 408 $res_body = json_decode( $res_body, true ); 409 $response = json_decode( wp_unslash( $res_body['response'] ), true ); 409 410 $this->log( 'response_page - response: ' . wp_json_encode( $response ) ); 410 411 -
mobipaid/trunk/mobipaid.php
r2277209 r2302697 4 4 * Plugin URI: https://github.com/MobipaidLLC/mobipaid-woocommerce 5 5 * Description: Receive payments using Mobipaid. 6 * Version: 1.0. 06 * Version: 1.0.1 7 7 * Requires at least: 5.0 8 8 * Tested up to: 5.3.2 … … 24 24 } 25 25 26 define( 'MOBIPAID_PLUGIN_VERSION', '1.0. 0' );26 define( 'MOBIPAID_PLUGIN_VERSION', '1.0.1' ); 27 27 28 28 register_activation_hook( __FILE__, 'mobipaid_activate_plugin' ); -
mobipaid/trunk/readme.txt
r2277209 r2302697 6 6 Tested up to: 5.3.2 7 7 Requires PHP: 7.0 8 Stable tag: 1.0. 08 Stable tag: 1.0.1 9 9 License: GPLv3 10 10 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 96 96 = 1.0.0 2020-04-06 = 97 97 * Initial release 98 99 = 1.0.1 - 2020-05-11 = 100 * change the way of get payment status.
Note: See TracChangeset
for help on using the changeset viewer.