FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
cleantalk-spam-protect
/
lib
/
Cleantalk
/
Antispam
/
Integrations
Edit File: WPUserMeta.php
<?php namespace Cleantalk\Antispam\Integrations; use Cleantalk\ApbctWP\Variables\Post; use WP_Error; class WPUserMeta extends IntegrationBase { private $return_argument = true; public function getDataForChecking($argument) { $this->return_argument = $argument; if ( ( apbct_is_plugin_active('user-meta/user-meta.php') || apbct_is_plugin_active('user-meta-pro/user-meta.php') ) && !empty($_POST) && Post::get('user_email') && Post::get('user_login') ) { /** * Filter for POST */ $input_array = apply_filters('apbct__filter_post', $_POST); $data = ct_get_fields_any($input_array); $data['register'] = true; return $data; } return null; } /** * @param $message * * @return WP_Error * @psalm-suppress UnusedVariable */ public function doBlock($message) { return new WP_Error('invalid_email', $message); } public function allow() { return $this->return_argument; } }
Save
Back