Changeset 3184424
- Timestamp:
- 11/08/2024 12:54:50 PM (17 months ago)
- Location:
- clearout-email-validator
- Files:
-
- 20 added
- 3 edited
-
tags/3.1.6 (added)
-
tags/3.1.6/assets (added)
-
tags/3.1.6/assets/css (added)
-
tags/3.1.6/assets/css/amsify.suggestags.css (added)
-
tags/3.1.6/assets/css/clearout_plugin.css (added)
-
tags/3.1.6/assets/img (added)
-
tags/3.1.6/assets/img/clearout_wp_logo.png (added)
-
tags/3.1.6/assets/js (added)
-
tags/3.1.6/assets/js/clearout_plugin.js (added)
-
tags/3.1.6/assets/js/jquery.amsify.suggestags.js (added)
-
tags/3.1.6/license.txt (added)
-
tags/3.1.6/plugin.php (added)
-
tags/3.1.6/readme.txt (added)
-
tags/3.1.6/src (added)
-
tags/3.1.6/src/clearout-plugin-page-settings.php (added)
-
tags/3.1.6/src/clearout-plugin.php (added)
-
tags/3.1.6/src/clearout-validator.php (added)
-
tags/3.1.6/src/helper.php (added)
-
tags/3.1.6/uninstall.php (added)
-
trunk/plugin.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/src/clearout-validator.php (modified) (1 diff)
-
trunk/src/helper.php (added)
Legend:
- Unmodified
- Added
- Removed
-
clearout-email-validator/trunk/plugin.php
r3177739 r3184424 4 4 * Plugin URL: https://developer.wordpress.org/plugins/clearout-email-validator 5 5 * Description: This plugin seamlessly integrated with all major forms to validate the user's given email address in real-time. Under the hood, this plugin use Clearout API to perform 20+ refined validation checks to determine the status of the email address, and thus helps capturing only the valid leads to maintain high quality mailing list. 6 * Version: 3.1. 56 * Version: 3.1.6 7 7 * Author: Clearout.io 8 8 * Author URI: https://clearout.io … … 14 14 15 15 // plugin version. 16 define( 'CLEAROUT_PLUGIN_VERSION', '3.1. 5' );16 define( 'CLEAROUT_PLUGIN_VERSION', '3.1.6' ); 17 17 define( 'CLEAROUT_RESULT_CACHED_TIMEOUT', 3600 ); 18 18 define( 'CLEAROUT_BASE_API_URL', 'https://api.clearout.io/v2/' ); … … 32 32 33 33 require_once ABSPATH . 'wp-admin/includes/plugin.php'; 34 require_once dirname( __FILE__ ) . '/src/helper.php'; 34 35 require_once dirname( __FILE__ ) . '/src/clearout-plugin.php'; 35 36 require_once dirname( __FILE__ ) . '/src/clearout-validator.php'; 36 37 require_once dirname( __FILE__ ) . '/src/clearout-plugin-page-settings.php'; 38 37 39 register_activation_hook( __FILE__, 'co_hook_plugin_activate' ); 38 40 register_deactivation_hook( __FILE__, 'co_hook_plugin_deactivate' ); -
clearout-email-validator/trunk/readme.txt
r3177777 r3184424 5 5 Requires at least: 4.6 6 6 Tested up to: 6.5.5 7 Stable tag: 3.1. 57 Stable tag: 3.1.6 8 8 License: GPLv2 or later 9 9 Block invalid emails like temporary, disposable, etc. with our real-time email verification. Verify email address during form-fill and stop form spam. … … 354 354 * Minor Optimizations 355 355 * Added safe to send option 356 = 3.1.6 = 357 * Minor Fixes -
clearout-email-validator/trunk/src/clearout-validator.php
r3177739 r3184424 285 285 // Check to See if req is from ADmin Pages? If so return immediately, we dont want to ev 286 286 // the Strpos check is introduced to make sure even if Rest API is called from admin page it shud not trigger EV 287 if ( (is_admin() || strpos($page_url, get_admin_url()) === 0) && CLEAROUT_TEST_PLUGIN_SOURCE != $clearout_form_source ) { 287 // Use the custom is_admin_request() function to check if in the admin context 288 if ( is_admin_request() && CLEAROUT_TEST_PLUGIN_SOURCE != $clearout_form_source ) { 288 289 return $clearout_validation_result; 289 290 }
Note: See TracChangeset
for help on using the changeset viewer.