HEX
Server: Apache
System: Linux cpanelx.inxs.ro 4.18.0-477.27.2.lve.el8.x86_64 #1 SMP Wed Oct 11 12:32:56 UTC 2023 x86_64
User: crowdandsafety (1041)
PHP: 8.1.34
Disabled: exec,passthru,shell_exec,system
Upload Files
File: //proc/self/root/proc/self/cwd/wp-content/plugins/convertplug/framework/lib/fields/media/media.js
/* eslint-env jquery */
jQuery(document).ready(function (jQuery) {
	jQuery('.smile-upload-media').on('click', function () {
		_wpPluploadSettings.defaults.multipart_params.admin_page = 'customizer'; // eslint-disable-line no-undef
		const button = jQuery(this);
		const id = 'smile_' + button.attr('id');
		const uid = button.data('uid');
		const rmv_btn = 'remove_' + button.attr('id');
		const img_container = button.attr('id') + '_container';
		//Extend wp.media object
		const uploader = (wp.media.frames.file_frame = wp.media({
			title: 'Select or Upload Image',
			button: {
				text: 'Choose Image',
			},
			library: {
				type: 'image',
			},
			multiple: false,
		}));
		uploader.on('select', function (props, attachment) {
			attachment = uploader.state().get('selection').first().toJSON();

			const sz = jQuery('.cp-media-' + uid).val();
			const alt = attachment.alt; //console.log(id);
			const val = attachment.id + '|' + sz + '|' + alt;
			const a = jQuery('#' + id);
			const name = jQuery('#' + id).attr('name');
			a.val(val);
			a.attr('value', val);
			jQuery('.cp-media-' + uid).attr('data-id', attachment.id);
			jQuery('.cp-media-' + uid).attr('data-alt', attachment.alt);
			jQuery('.cp-media-' + uid)
				.parents('.cp-media-sizes')
				.removeClass('hide-for-default');
			jQuery('.' + img_container).html(
				'<img src="' + attachment.url + '"/>'
			);
			jQuery('#' + rmv_btn).show();

			button.text('Change Image');

			//  Partial Refresh
			//  -   Apply background, background-color, color etc.
			const css_preview = a.attr('data-css-preview') || '';
			const selector = a.attr('data-css-selector') || '';
			const property = a.attr('data-css-property') || '';
			const unit = a.attr('data-unit') || 'px';
			const url = attachment.url;

			partial_refresh_image(css_preview, selector, property, unit, url);

			jQuery(document).trigger('cp-image-change', [name, url, val]);
			jQuery('#' + id).trigger('change');
		});
		uploader.open(button);
		return false;
	});

	jQuery('.smile-remove-media').on('click', function (e) {
		e.preventDefault();
		const button = jQuery(this);
		const id = button.attr('id').replace('remove_', 'smile_');
		const upload = button.attr('id').replace('remove_', '');
		const img_container =
			button.attr('id').replace('remove_', '') + '_container';
		jQuery('#' + id).attr('value', '');

		//  Partial Refresh
		//  -   Apply background, background-color, color etc.
		const a = jQuery('#' + id);
		const css_preview = a.attr('data-css-preview') || '';
		const selector = a.attr('data-css-selector') || '';
		const property = a.attr('data-css-property') || '';
		const unit = a.attr('data-unit') || 'px';
		const value = ''; //	Empty the background image
		const name = jQuery('#' + id).attr('name');
		partial_refresh_image(css_preview, selector, property, unit, value);

		const html = '<p class="description">No Image Selected</p>';
		jQuery('.' + img_container).html(html);

		button.hide();
		jQuery('#' + upload).text('Select Image');

		jQuery(document).trigger('cp-image-remove', [name, value]);
		jQuery('#' + id).trigger('change');
	});

	jQuery('.smile-default-media').on('click', function (e) {
		e.preventDefault();
		const button = jQuery(this);
		const id = button.attr('id').replace('default_', 'smile_');
		const img_container =
			button.attr('id').replace('default_', '') + '_container';
		const container = jQuery(this).parents('.content');
		const default_img = jQuery(this).data('default');
		jQuery('#' + id).attr('value', default_img);

		//  Partial Refresh
		//  -   Apply background, background-color, color etc.
		const a = jQuery('#' + id);
		const css_preview = a.attr('data-css-preview') || '';
		const selector = a.attr('data-css-selector') || '';
		const property = a.attr('data-css-property') || '';
		const unit = a.attr('data-unit') || 'px';
		const value = default_img; //	Empty the background image
		const name = jQuery('#' + id).attr('name');
		partial_refresh_image(css_preview, selector, property, unit, value);

		jQuery('.' + img_container).html('<img src="' + default_img + '"/>');

		jQuery(document).trigger('cp-image-default', [name, value]);
		jQuery('#' + id).trigger('change');
		container.find('.cp-media-sizes').hide().addClass('hide-for-default');
	});

	jQuery('.cp-media-size').on('change', function () {
		const img_id = jQuery(this).attr('data-id');
		const alt = jQuery(this).attr('data-alt');
		const input =
			'smile_' + jQuery(this).parents('.cp-media-sizes').data('name');
		let val = '';
		if (img_id !== '') {
			val = img_id + '|' + jQuery(this).val();
		}
		if (alt !== '') {
			val = val + '|' + alt;
		}
		jQuery('#' + input).val(val);
		jQuery('#' + input).attr('value', val);
	});

	function partial_refresh_image(
		css_preview,
		selector,
		property,
		unit,
		value
	) {
		//  apply css by - inline
		if (
			css_preview !== 1 ||
			null === css_preview ||
			'undefined' === css_preview
		) {
			const frame = jQuery('#smile_design_iframe').contents();

			switch (property) {
				case 'src':
					frame.find(selector).attr('src', value);
					break;
				default:
					frame.find(selector).css(property, 'url(' + value + ')');
					break;
			}
		}
		//  apply css by - after css generation
		jQuery(document).trigger('updated', [
			css_preview,
			selector,
			property,
			value,
			unit,
		]);
	}
});