| Server IP : 213.186.33.4 / Your IP : 216.73.216.146 Web Server : Apache System : Linux webm005.cluster103.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64 User : karinebmkh ( 644538) PHP Version : 8.4.22 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/karinebmkh/www/wp-content/plugins/honeypot/includes/integration/ |
Upload File : |
<?php
if ( ! defined( 'ABSPATH' ) ) exit;
if (!function_exists('wpae_get_blocked_integrations') || !in_array('diviengineform', wpae_get_blocked_integrations())) :
function my_df_before_process($form_id,$post_array,$form_type){
if (wpa_check_is_spam($_POST)){
foreach($_POST as $param => $value){
if(strpos($param, 'divi-form-submit') === 0){
$is_divi_engine_form = 'true';
$divi_engine_form_additional = esc_attr(str_replace('divi-form-submit', '', $param));
}
}
do_action('wpa_handle_spammers','divi_engine_form', $_POST);
if (str_ends_with($_SERVER["REQUEST_URI"],"admin-ajax.php")){
// ajax post
$result = array( 'result' => 'failed', 'redirect' => '', 'message' => '<B>' . esc_html($GLOBALS['wpa_error_message']) . '</B>', 'message_position' => 'after_button');
wp_send_json( $result );
}
else
{
echo "<div id='fb_form{$divi_engine_form_additional}'><p>".$GLOBALS['wpa_error_message']."</p><div></div></div>";
}
die();
}
}
add_action( 'df_before_process', 'my_df_before_process', 10, 3 );
endif;