| Server IP : 13.235.167.51 / Your IP : 216.73.217.116 Web Server : Apache System : Linux machinox-server 6.17.0-1013-aws #13~24.04.1-Ubuntu SMP Fri Apr 24 21:36:58 UTC 2026 aarch64 User : root ( 0) PHP Version : 8.2.29 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/machinox.in/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' ),
]
);
}
}