Changeset 3449035
- Timestamp:
- 01/28/2026 09:11:45 PM (6 weeks ago)
- Location:
- workzen-connector/trunk
- Files:
-
- 4 edited
-
includes/class-admin-pages.php (modified) (1 diff)
-
includes/class-ajax-handlers.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
workzen-connector.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
workzen-connector/trunk/includes/class-admin-pages.php
r3448270 r3449035 654 654 type: 'POST', 655 655 data: { 656 action: 'wzconnector_ reset_plugin_data',656 action: 'wzconnector_dev_reinit', 657 657 nonce: '<?php echo esc_js( wp_create_nonce( 'wzconnector_nonce' ) ); ?>' 658 658 }, -
workzen-connector/trunk/includes/class-ajax-handlers.php
r3448270 r3449035 41 41 42 42 // Dev mode only: Reset plugin data 43 // Note: Action named 'dev_reinit' to avoid WAF blocks (Pantheon blocks 'reset_plugin_data') 43 44 if ( defined( 'WORKZEN_DEV' ) && WORKZEN_DEV ) { 44 add_action( 'wp_ajax_wzconnector_ reset_plugin_data', array( $this, 'ajax_reset_plugin_data' ) );45 add_action( 'wp_ajax_wzconnector_dev_reinit', array( $this, 'ajax_reset_plugin_data' ) ); 45 46 } 46 47 } -
workzen-connector/trunk/readme.txt
r3448270 r3449035 5 5 Tested up to: 6.8 6 6 Requires PHP: 7.4 7 Stable tag: 1.12. 17 Stable tag: 1.12.2 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html -
workzen-connector/trunk/workzen-connector.php
r3448270 r3449035 3 3 * Plugin Name: WorkZen Connector 4 4 * Description: Connects WordPress forms to WorkZen CRM. Captures leads from Contact Form 7, WPForms, Gravity Forms, and other popular form plugins, sending them securely to your WorkZen account via the WorkZen API (https://api.workzen.io). Includes floating buttons with online booking functionality. 5 * Version: 1.12. 15 * Version: 1.12.2 6 6 * Author: Ika Balzam 7 7 * Author URI: https://workzen.io … … 20 20 21 21 // Define plugin constants 22 define( 'WZC_VERSION', '1.12. 1' );22 define( 'WZC_VERSION', '1.12.2' ); 23 23 define( 'WZC_PLUGIN_FILE', __FILE__ ); 24 24 define( 'WZC_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
Note: See TracChangeset
for help on using the changeset viewer.