Plugin Directory

Changeset 3277340


Ignore:
Timestamp:
04/19/2025 11:19:13 PM (12 months ago)
Author:
reoon
Message:

Forminator form integration updated to match with their latest version.

Location:
reoon-email-verifier
Files:
33 added
3 edited

Legend:

Unmodified
Added
Removed
  • reoon-email-verifier/trunk/includes/validator/forminator-forms-validator.php

    r3073708 r3277340  
    1111    function reoonev_validate_emails($submit_errors, $form_id, $field_data_array)
    1212    {
    13         $email_key="";
     13       
    1414        foreach ($_POST as $key => $value) {
    1515            if (stripos($key, 'email') !== false ) {
  • reoon-email-verifier/trunk/readme.txt

    r3073708 r3277340  
    33Tags: email verifier, email validator, block spam registration, form email validation, temporary email blocker
    44Requires at least: 4.7
    5 Tested up to: 6.5.2
     5Tested up to: 6.8
    66Requires PHP: 5.4
    7 Stable tag: 1.2.5
     7Stable tag: 1.2.6
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    8686Bug fix and security updates.
    8787
     88= 1.2.6 =
     89Forminator form integration updated to match with their latest version.
    8890
    8991
  • reoon-email-verifier/trunk/reoon-email-verifier.php

    r3073708 r3277340  
    44 * Plugin URI: https://www.reoon.com/email-verifier/
    55 * Description: This plugin verifies email addresses upon online form submission, safeguarding against invalid, temporary, disposable and harmful email addresses.
    6  * Version: 1.2.5
     6 * Version: 1.2.6
    77 * Author: Reoon Technology
    88 * Author URI: https://www.reoon.com/
     
    6767
    6868        add_action( 'plugins_loaded', array($this,'plugins_loaded_action' ));
     69       
    6970
    7071        register_activation_hook(__FILE__, array($this, 'reoonev_activation'));
     
    188189            add_filter( 'fluentform/validate_input_item_input_email', array($fluentForms,'reoonev_validate_emails' ), 10, 5);
    189190        }
    190 
    191         if(class_exists('Forminator_Addon_Loader') && Util::get_reoon_option("forminator_forms")==1)
     191             
     192        if(function_exists('forminator_plugin_dir') && Util::get_reoon_option("forminator_forms")==1)
    192193        {           
     194           
    193195            $forminatorForms = new ForminatorFormsValidator();
    194196            add_filter( 'forminator_custom_form_submit_errors', array($forminatorForms,'reoonev_validate_emails' ), 10, 3);
Note: See TracChangeset for help on using the changeset viewer.