Plugin Directory

Changeset 3322267


Ignore:
Timestamp:
07/04/2025 11:05:29 AM (8 months ago)
Author:
zealopensource
Message:

Update to version 3.1 from GitHub

Location:
accept-stripe-payments-using-contact-form-7
Files:
2 deleted
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • accept-stripe-payments-using-contact-form-7/tags/3.1/accept-stripe-payments-using-contact-form-7.php

    r3299316 r3322267  
    44 * Plugin URL: #
    55 * Description: This plugin will integrate Stripe payment gateway for making your payments through Contact Form 7.
    6  * Version: 3.0
     6 * Version: 3.1
    77 * Author: ZealousWeb
    88 * Author URI: https://www.zealousweb.com
     
    2424 *
    2525 * @package Accept Stripe Payments Using Contact Form 7
    26  * @since 3.0
     26 * @since 3.1
    2727 */
    2828
    2929
    3030if ( !defined( 'CF7SA_VERSION' ) ) {
    31     define( 'CF7SA_VERSION', '3.0' ); // Version of plugin
     31    define( 'CF7SA_VERSION', '3.1' ); // Version of plugin
    3232}
    3333
  • accept-stripe-payments-using-contact-form-7/tags/3.1/inc/class.cf7sa.php

    r3239238 r3322267  
    8585        function action__init() {
    8686
    87             add_rewrite_rule( '^cf7sa-phpinfo(/(.*))?/?$', 'index.php?cf7sa-phpinfo=$matches[2]', 'top' );
    8887            add_rewrite_rule( '^cf7sa-webhook(/(.*))?/?$', 'index.php?cf7sa-webhook=$matches[2]', 'top' );
    8988            flush_rewrite_rules();
  • accept-stripe-payments-using-contact-form-7/tags/3.1/inc/front/class.cf7sa.front.php

    r3239238 r3322267  
    2323         * @var string Base URL endpoint for pages.
    2424         */
    25         const BASE_ENDPOINT = 'cf7sa-phpinfo';
     25       
    2626        const WEBHOOK_ENDPOINT = 'cf7sa-webhook';
    2727
     
    6565         */
    6666        function filter__query_vars( $vars ) {
    67             $vars[] = $this::BASE_ENDPOINT;
    6867            $vars[] = $this::WEBHOOK_ENDPOINT;
    6968            return $vars;
  • accept-stripe-payments-using-contact-form-7/tags/3.1/readme.txt

    r3299316 r3322267  
    1010CF7 requires at least: 3.0
    1111CF7 tested up to: 5.8
    12 Stable tag: 3.0
    13 Version: 3.0
     12Stable tag: 3.1
     13Version: 3.1
    1414License URI: http://www.gnu.org/licenses/gpl-3.0.html
    1515
     
    133133== Changelog ==
    134134
     135= 3.1 =
     136* Security Update.
     137
    135138= 3.0 =
    136139* Minor changes - Doc update
  • accept-stripe-payments-using-contact-form-7/trunk/accept-stripe-payments-using-contact-form-7.php

    r3299316 r3322267  
    44 * Plugin URL: #
    55 * Description: This plugin will integrate Stripe payment gateway for making your payments through Contact Form 7.
    6  * Version: 3.0
     6 * Version: 3.1
    77 * Author: ZealousWeb
    88 * Author URI: https://www.zealousweb.com
     
    2424 *
    2525 * @package Accept Stripe Payments Using Contact Form 7
    26  * @since 3.0
     26 * @since 3.1
    2727 */
    2828
    2929
    3030if ( !defined( 'CF7SA_VERSION' ) ) {
    31     define( 'CF7SA_VERSION', '3.0' ); // Version of plugin
     31    define( 'CF7SA_VERSION', '3.1' ); // Version of plugin
    3232}
    3333
  • accept-stripe-payments-using-contact-form-7/trunk/inc/class.cf7sa.php

    r3239238 r3322267  
    8585        function action__init() {
    8686
    87             add_rewrite_rule( '^cf7sa-phpinfo(/(.*))?/?$', 'index.php?cf7sa-phpinfo=$matches[2]', 'top' );
    8887            add_rewrite_rule( '^cf7sa-webhook(/(.*))?/?$', 'index.php?cf7sa-webhook=$matches[2]', 'top' );
    8988            flush_rewrite_rules();
  • accept-stripe-payments-using-contact-form-7/trunk/inc/front/class.cf7sa.front.php

    r3239238 r3322267  
    2323         * @var string Base URL endpoint for pages.
    2424         */
    25         const BASE_ENDPOINT = 'cf7sa-phpinfo';
     25       
    2626        const WEBHOOK_ENDPOINT = 'cf7sa-webhook';
    2727
     
    6565         */
    6666        function filter__query_vars( $vars ) {
    67             $vars[] = $this::BASE_ENDPOINT;
    6867            $vars[] = $this::WEBHOOK_ENDPOINT;
    6968            return $vars;
  • accept-stripe-payments-using-contact-form-7/trunk/readme.txt

    r3299316 r3322267  
    1010CF7 requires at least: 3.0
    1111CF7 tested up to: 5.8
    12 Stable tag: 3.0
    13 Version: 3.0
     12Stable tag: 3.1
     13Version: 3.1
    1414License URI: http://www.gnu.org/licenses/gpl-3.0.html
    1515
     
    133133== Changelog ==
    134134
     135= 3.1 =
     136* Security Update.
     137
    135138= 3.0 =
    136139* Minor changes - Doc update
Note: See TracChangeset for help on using the changeset viewer.