????JFIF??x?x????'
| Server IP : 172.67.174.47  /  Your IP : 216.73.216.83 Web Server : LiteSpeed System : Linux premium151.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : tempvsty ( 647) PHP Version : 8.0.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /././home/tempvsty/./buyeaa.com/wp-content/plugins/wpforms-lite/src/Admin/Builder/ | 
| Upload File : | 
<?php
namespace WPForms\Admin\Builder;
/**
 * Image Upload functionality for the Form Builder Settings.
 *
 * @since 1.9.7.3
 */
class ImageUpload {
	/**
	 * Initialize class.
	 *
	 * @since 1.9.7.3
	 */
	public function init(): void {
		$this->hooks();
	}
	/**
	 * Register hooks.
	 *
	 * @since 1.9.7.3
	 */
	public function hooks(): void {
		add_action( 'wpforms_builder_enqueues', [ $this, 'enqueues' ] );
	}
	/**
	 * Enqueue assets for the Form Builder.
	 *
	 * @since 1.9.7.3
	 */
	public function enqueues(): void {
		$min = wpforms_get_min_suffix();
		wp_enqueue_script(
			'wpforms-builder-settings-image-upload',
			WPFORMS_PLUGIN_URL . "assets/js/admin/builder/image-upload{$min}.js",
			[ 'wp-util', 'wpforms-builder-settings' ],
			WPFORMS_VERSION,
			true
		);
	}
}