Plugin Directory

Changeset 2460849


Ignore:
Timestamp:
01/22/2021 10:17:17 AM (5 years ago)
Author:
rixeo
Message:

Version 2.3

Location:
pesapress/trunk
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • pesapress/trunk/app/assets/js/pp-admin.js

    r2458800 r2460849  
    1 /*! PesaPress Free - v2.2.9
     1/*! PesaPress Free - v2.3
    22 * https://alloy.co.ke/projects/pesapress
    33 * Copyright (c) 2021; * Licensed GPLv2+ */
  • pesapress/trunk/app/assets/js/pp-admin.min.js

    r2458800 r2460849  
    1 /*! PesaPress Free - v2.2.9
     1/*! PesaPress Free - v2.3
    22 * https://alloy.co.ke/projects/pesapress
    33 * Copyright (c) 2021; * Licensed GPLv2+ */
  • pesapress/trunk/app/assets/js/pp-public.js

    r2458800 r2460849  
    1 /*! PesaPress Free - v2.2.9
     1/*! PesaPress Free - v2.3
    22 * https://alloy.co.ke/projects/pesapress
    33 * Copyright (c) 2021; * Licensed GPLv2+ */
  • pesapress/trunk/app/assets/js/pp-public.min.js

    r2458800 r2460849  
    1 /*! PesaPress Free - v2.2.9
     1/*! PesaPress Free - v2.3
    22 * https://alloy.co.ke/projects/pesapress
    33 * Copyright (c) 2021; * Licensed GPLv2+ */
  • pesapress/trunk/app/controller/class-pp-controller-front.php

    r2460442 r2460849  
    139139            $success_page = $settings->get_checkout_setting( 'success_page' );
    140140            $success_page = get_permalink( $success_page );
     141            $success_page = apply_filters( 'pesapress_payment_return_success', get_permalink( $success_page ), $order_log );
    141142            $success_page = add_query_arg( 'order_id', $order_id, $success_page );
    142143           
     
    158159                }
    159160            }
     161
     162            do_action( 'pesapress_after_process_payment_return', $order_id, $settings, $order_log );
     163           
    160164            if ( wp_redirect( $success_page ) ) {
    161165                exit;
  • pesapress/trunk/app/model/class-pp-model-transaction.php

    r2460442 r2460849  
    143143                                'value' => $page_id,
    144144                            );
     145                            if ( isset( $_POST['form_id'] ) ) {
     146                                $data_to_save[]            = array(
     147                                    'name'  => 'form_id',
     148                                    'value' => sanitize_text_field( $_POST['form_id'] ),
     149                                );
     150                            }
     151
    145152                            $payment_log               = new PP_Model_Log();
    146153                            $payment_log->amount       = $amount;
  • pesapress/trunk/pesapress.php

    r2460442 r2460849  
    44 Plugin URI:          https://pesapress.com/
    55 Description:         Integrate PesaPal to WordPress and supported integrations
    6  Version:             2.2.9.2
     6 Version:             2.3
    77 Author:              alloykenya
    88 Author URI:          https://hubloy.com
     
    2828         * @var string
    2929         */
    30         public $version = '2.2.9.2';
     30        public $version = '2.3';
    3131
    3232
  • pesapress/trunk/readme.txt

    r2460442 r2460849  
    55Tested up to: 5.6
    66Requires PHP: 5.6
    7 Stable tag: 2.2.9.2
     7Stable tag: 2.3
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    6868== Changelog ==
    6969
     70= 2.3 =
     71* New : Version bump
     72* Fix : Filters for next version
     73* Fix : Other fixes
    7074
    7175= 2.2.9.2 =
Note: See TracChangeset for help on using the changeset viewer.