| Server IP : 46.105.57.169 / Your IP : 216.73.216.67 Web Server : Apache System : Linux webm002.cluster120.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : verseaumee ( 152031) PHP Version : 8.5.7 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/verseaumee/blueversion/wp-content/plugins/wpforms/src/Pro/Admin/Builder/ |
Upload File : |
<?php
namespace WPForms\Pro\Admin\Builder;
/**
* AntiSpam class.
*
* @since 1.7.8
*/
class AntiSpam extends \WPForms\Admin\Builder\AntiSpam {
/**
* Register hooks.
*
* @since 1.7.8
*/
protected function hooks() {
parent::hooks();
add_action( 'wpforms_builder_enqueues', [ $this, 'builder_assets' ] );
}
/**
* Enqueue assets for the builder.
*
* @since 1.7.8
*
* @param string $view Current view.
*/
public function builder_assets( $view ) {
$min = wpforms_get_min_suffix();
// JavaScript.
wp_enqueue_script(
'wpforms-builder-anti-spam-filters',
WPFORMS_PLUGIN_URL . "assets/pro/js/admin/builder/filters{$min}.js",
[ 'jquery', 'choicesjs' ],
WPFORMS_VERSION,
true
);
wp_localize_script(
'wpforms-builder-anti-spam-filters',
'wpforms_builder_anti_spam_filters',
[
'successfullReformatWarning' => __( 'Your keyword filter list has been reformatted. Please save these changes.', 'wpforms' ),
]
);
}
}