Changeset 3322267
- Timestamp:
- 07/04/2025 11:05:29 AM (8 months ago)
- Location:
- accept-stripe-payments-using-contact-form-7
- Files:
-
- 2 deleted
- 8 edited
- 1 copied
-
tags/3.1 (copied) (copied from accept-stripe-payments-using-contact-form-7/trunk)
-
tags/3.1/accept-stripe-payments-using-contact-form-7.php (modified) (2 diffs)
-
tags/3.1/inc/class.cf7sa.php (modified) (1 diff)
-
tags/3.1/inc/front/class.cf7sa.front.php (modified) (2 diffs)
-
tags/3.1/inc/front/template/cf7sa-info.php (deleted)
-
tags/3.1/readme.txt (modified) (2 diffs)
-
trunk/accept-stripe-payments-using-contact-form-7.php (modified) (2 diffs)
-
trunk/inc/class.cf7sa.php (modified) (1 diff)
-
trunk/inc/front/class.cf7sa.front.php (modified) (2 diffs)
-
trunk/inc/front/template/cf7sa-info.php (deleted)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
accept-stripe-payments-using-contact-form-7/tags/3.1/accept-stripe-payments-using-contact-form-7.php
r3299316 r3322267 4 4 * Plugin URL: # 5 5 * Description: This plugin will integrate Stripe payment gateway for making your payments through Contact Form 7. 6 * Version: 3. 06 * Version: 3.1 7 7 * Author: ZealousWeb 8 8 * Author URI: https://www.zealousweb.com … … 24 24 * 25 25 * @package Accept Stripe Payments Using Contact Form 7 26 * @since 3. 026 * @since 3.1 27 27 */ 28 28 29 29 30 30 if ( !defined( 'CF7SA_VERSION' ) ) { 31 define( 'CF7SA_VERSION', '3. 0' ); // Version of plugin31 define( 'CF7SA_VERSION', '3.1' ); // Version of plugin 32 32 } 33 33 -
accept-stripe-payments-using-contact-form-7/tags/3.1/inc/class.cf7sa.php
r3239238 r3322267 85 85 function action__init() { 86 86 87 add_rewrite_rule( '^cf7sa-phpinfo(/(.*))?/?$', 'index.php?cf7sa-phpinfo=$matches[2]', 'top' );88 87 add_rewrite_rule( '^cf7sa-webhook(/(.*))?/?$', 'index.php?cf7sa-webhook=$matches[2]', 'top' ); 89 88 flush_rewrite_rules(); -
accept-stripe-payments-using-contact-form-7/tags/3.1/inc/front/class.cf7sa.front.php
r3239238 r3322267 23 23 * @var string Base URL endpoint for pages. 24 24 */ 25 const BASE_ENDPOINT = 'cf7sa-phpinfo';25 26 26 const WEBHOOK_ENDPOINT = 'cf7sa-webhook'; 27 27 … … 65 65 */ 66 66 function filter__query_vars( $vars ) { 67 $vars[] = $this::BASE_ENDPOINT;68 67 $vars[] = $this::WEBHOOK_ENDPOINT; 69 68 return $vars; -
accept-stripe-payments-using-contact-form-7/tags/3.1/readme.txt
r3299316 r3322267 10 10 CF7 requires at least: 3.0 11 11 CF7 tested up to: 5.8 12 Stable tag: 3. 013 Version: 3. 012 Stable tag: 3.1 13 Version: 3.1 14 14 License URI: http://www.gnu.org/licenses/gpl-3.0.html 15 15 … … 133 133 == Changelog == 134 134 135 = 3.1 = 136 * Security Update. 137 135 138 = 3.0 = 136 139 * Minor changes - Doc update -
accept-stripe-payments-using-contact-form-7/trunk/accept-stripe-payments-using-contact-form-7.php
r3299316 r3322267 4 4 * Plugin URL: # 5 5 * Description: This plugin will integrate Stripe payment gateway for making your payments through Contact Form 7. 6 * Version: 3. 06 * Version: 3.1 7 7 * Author: ZealousWeb 8 8 * Author URI: https://www.zealousweb.com … … 24 24 * 25 25 * @package Accept Stripe Payments Using Contact Form 7 26 * @since 3. 026 * @since 3.1 27 27 */ 28 28 29 29 30 30 if ( !defined( 'CF7SA_VERSION' ) ) { 31 define( 'CF7SA_VERSION', '3. 0' ); // Version of plugin31 define( 'CF7SA_VERSION', '3.1' ); // Version of plugin 32 32 } 33 33 -
accept-stripe-payments-using-contact-form-7/trunk/inc/class.cf7sa.php
r3239238 r3322267 85 85 function action__init() { 86 86 87 add_rewrite_rule( '^cf7sa-phpinfo(/(.*))?/?$', 'index.php?cf7sa-phpinfo=$matches[2]', 'top' );88 87 add_rewrite_rule( '^cf7sa-webhook(/(.*))?/?$', 'index.php?cf7sa-webhook=$matches[2]', 'top' ); 89 88 flush_rewrite_rules(); -
accept-stripe-payments-using-contact-form-7/trunk/inc/front/class.cf7sa.front.php
r3239238 r3322267 23 23 * @var string Base URL endpoint for pages. 24 24 */ 25 const BASE_ENDPOINT = 'cf7sa-phpinfo';25 26 26 const WEBHOOK_ENDPOINT = 'cf7sa-webhook'; 27 27 … … 65 65 */ 66 66 function filter__query_vars( $vars ) { 67 $vars[] = $this::BASE_ENDPOINT;68 67 $vars[] = $this::WEBHOOK_ENDPOINT; 69 68 return $vars; -
accept-stripe-payments-using-contact-form-7/trunk/readme.txt
r3299316 r3322267 10 10 CF7 requires at least: 3.0 11 11 CF7 tested up to: 5.8 12 Stable tag: 3. 013 Version: 3. 012 Stable tag: 3.1 13 Version: 3.1 14 14 License URI: http://www.gnu.org/licenses/gpl-3.0.html 15 15 … … 133 133 == Changelog == 134 134 135 = 3.1 = 136 * Security Update. 137 135 138 = 3.0 = 136 139 * Minor changes - Doc update
Note: See TracChangeset
for help on using the changeset viewer.