FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
cleantalk-spam-protect
/
lib
/
Cleantalk
/
Antispam
/
Integrations
Edit File: Tevolution.php
<?php namespace Cleantalk\Antispam\Integrations; class Tevolution extends IntegrationBase { /** * @inheritDoc */ public function getDataForChecking($argument) { if (!apbct_is_plugin_active('Tevolution/templatic.php')) { return null; } $username = isset($_POST['user_fname']) && is_string($_POST['user_fname']) ? sanitize_text_field($_POST['user_fname']) : ''; $email = isset($_POST['user_email']) && is_string($_POST['user_email']) ? sanitize_text_field($_POST['user_email']) : ''; $input_array = apply_filters('apbct__filter_post', $_POST); $data = ct_gfa($input_array, $email, $username); $data['register'] = true; return $data; } /** * @inheritDoc */ public function doBlock($message) { global $ct_comment; $ct_comment = $message; ct_die(null, null); } }
Save
Back