Changeset 2811979
- Timestamp:
- 11/04/2022 01:16:08 PM (3 years ago)
- Location:
- clearout-email-validator/trunk
- Files:
-
- 5 edited
-
plugin.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
-
src/clearout_plugin.php (modified) (1 diff)
-
src/clearout_plugin_page_settings.php (modified) (1 diff)
-
src/clearout_validator.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
clearout-email-validator/trunk/plugin.php
r2805874 r2811979 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: 2.0. 36 * Version: 2.0.4 7 7 * Author: Clearout.io 8 8 * Author URI: https://clearout.io … … 13 13 14 14 // plugin version. 15 define('CLEAROUT_PLUGIN_VERSION', '2.0. 3');15 define('CLEAROUT_PLUGIN_VERSION', '2.0.4'); 16 16 define('CLEAROUT_RESULT_CACHED_TIMEOUT', 3600); 17 17 define('CLEAROUT_BASE_API_URL', "https://api.clearout.io/v2/"); -
clearout-email-validator/trunk/readme.txt
r2805874 r2811979 288 288 = 2.0.3 = 289 289 * Minor Fixes and error handling 290 = 2.0.4 = 291 * Minor Fixes and added strict mode -
clearout-email-validator/trunk/src/clearout_plugin.php
r2674354 r2811979 1 1 <?php 2 error_reporting(E_STRICT); 2 3 3 4 // add clearout plugin setup page to the admin options page -
clearout-email-validator/trunk/src/clearout_plugin_page_settings.php
r2805874 r2811979 1 1 <?php 2 error_reporting(E_STRICT); 3 2 4 // read the options 3 5 if (isset($_POST['co_reset_options'])) { -
clearout-email-validator/trunk/src/clearout_validator.php
r2798342 r2811979 1 1 <?php 2 error_reporting(E_STRICT); 2 3 3 4 // Public methods called by ajax.php … … 567 568 } 568 569 } 569 if (count($hidden_ignore_fields) > 0) { 570 return $errors; 571 } 570 572 571 $clearout_form_source = "formidable"; 573 572 foreach ($values['item_meta'] as $key => $value) {
Note: See TracChangeset
for help on using the changeset viewer.