HEX
Server: Apache/2.4.59 (Debian)
System: Linux emory.shared.1984.is 6.1.0-27-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.115-1 (2024-11-01) x86_64
User: u11574 (1020)
PHP: 7.4.33
Disabled: exec,system,passthru,shell_exec,popen,show_source,shell,symlink,proc_open,pcntl_exec,pcntl_fork,pcntl_wait,pcntl_alarm,pcntl_signal,pcntl_signal_dispatch,pcntl_getpriority,proc_get_status,expect_popen,dl,putenv,mail
Upload Files
File: /var/www/virtual/mariaellingsen.com/htdocs/wp-content/plugins/soliloquy/assets/js/overview.js
/**
 * Handles any Soliloquy WP_List_Table events:
 * - Quick / Bulk Edit
 */
jQuery(document).ready(function ($) {
	//Init the Clipboard
	new Clipboard('.soliloquy-clipboard');

	//Prevent Default
	$('.soliloquy-clipboard').on('click', function (e) {
		e.preventDefault();
	});
	/**
	 * Quick / Bulk Edit Support
	 */
	if (typeof inlineEditPost !== 'undefined') {
		// we create a copy of the WP inline edit post function
		var wp_inline_edit = inlineEditPost.edit;

		// and then we overwrite the function with our own code
		inlineEditPost.edit = function (id) {
			// "call" the original WP edit function
			// we don't want to leave WordPress hanging
			wp_inline_edit.apply(this, arguments);

			// get the post ID
			var post_id = 0;
			if (typeof id == 'object') {
				post_id = parseInt(this.getId(id));
			}

			if (post_id > 0) {
				// Get the Edit and Post Row Elements
				var edit_row = $('#edit-' + post_id),
					post_row = $('#post-' + post_id);
				// Get Soliloquy Settings
				// These are stored in hidden input fields created by includes/admin/posttype.php
				// We populate via JS because there's no $post object for us to access in includes/admin/common.php's quick edit functions
				(slider_theme = $(
					'input[name="_soliloquy_' +
						post_id +
						'[slider_theme]"]',
					$(post_row),
				).val()),
					(slider_transition = $(
						'input[name="_soliloquy_' +
							post_id +
							'[transition]"]',
						$(post_row),
					).val());

				// Populate Quick Edit Fields with data from the above hidden fields
				$(
					'select[name="_soliloquy[slider_theme]"]',
					$(edit_row),
				).val(slider_theme);
				$('select[name="_soliloquy[transition]"]', $(edit_row)).val(
					slider_transition,
				);
			}
		};

		// Remove all hidden inputs when a search is performed
		// This stops them from being included in the GET URL, otherwise we'd have a really long search URL
		// which breaks some nginx configurations
		$('form#posts-filter').on('submit', function (e) {
			$('input.soliloquy-quick-edit').remove();
		});
	}
});