/*
Theme Name: AutismusDO-childtheme
Theme URI: https://www.autismus-dortmund.de
Template: chariton
Author: Online gesehen werden
Author URI: https://www.online-gesehen-werden.de
Description: Chariton - Non-Profit Charity WordPress Theme.
Tags: threaded-comments,translation-ready
Version: 1.0.7.1603300235
Updated: 2020-10-21 19:10:35

*/


/* Wappointment Umleitung */

add_action( 'elementor_pro/forms/validation', function($record, $ajax_handler) {
 $blackwords = explode("\n", get_option('disallowed_keys'));

 $fields = $record->get_field([]);
 foreach($fields as $field) {
  foreach($blackwords as $blackword) {
   if(!trim($blackword)) continue;
   $regex = '|'.trim($blackword).'|i';
   if(preg_match($regex, $field['value'])) {
    $ajax_handler->add_error($field['id'], esc_html__( 'Invalid Form.', 'elementor-pro' ) );
    return;
   }
  }
 }
}, 10, 2);