Uname:Linux marissa.metanet.ch 4.18.0-553.141.2.lve.el7h.x86_64 #1 SMP Wed Jul 8 17:20:31 UTC 2026 x86_64

Base Dir : /home/httpd/vhosts/comeonline.ch/httpdocs

User : onlineadmin


403WebShell
403Webshell
Server IP : 80.74.154.100  /  Your IP : 216.73.217.0
Web Server : Apache
System : Linux marissa.metanet.ch 4.18.0-553.141.2.lve.el7h.x86_64 #1 SMP Wed Jul 8 17:20:31 UTC 2026 x86_64
User : onlineadmin ( 10487)
PHP Version : 8.5.7
Disable Function : opcache_get_status
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/httpd/vhosts/comeonline.ch/httpdocs/wp-content/plugins/wpsso/js/com/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/httpd/vhosts/comeonline.ch/httpdocs/wp-content/plugins/wpsso/js/com/jquery-metabox.js
/*
 * Provide a parent container_id value to initialize a single metabox (when loading a single metabox via ajax, for example).
 */
function sucomInitMetabox( container_id, doing_ajax ) {

	var table_id = 'table.sucom-settings';

	if ( 'string' === typeof container_id && container_id ) {

		table_id = container_id + ' ' + table_id;
	}

	/*
	 * Style the datepicker.
	 */
	jQuery( table_id + ' input.datepicker' ).datepicker( {
		beforeShow:function( input, inst ) {
			jQuery( '#ui-datepicker-div' ).addClass( 'sucom-settings' );
		},
		changeMonth:true,
		changeYear:true,
		showButtonPanel:false,
		dateFormat:'yy-mm-dd'
	} );

	/*
	 * Softly disable input fields for the 'disabled' CSS class (instead of using the standard 'disabled' HTML tag attribute
	 * which prevents values from being submitted).
	 */
	jQuery( table_id + ' input' ).on( 'click', sucomBlurDisabled );
	jQuery( table_id + ' input' ).on( 'focus', sucomBlurDisabled );
	jQuery( table_id + ' textarea' ).on( 'focus', sucomBlurDisabled );
	jQuery( table_id + ' select' ).on( 'focus', sucomBlurDisabled );
	jQuery( table_id + ' select' ).on( 'mousedown', sucomBlurDisabled );	// Prevents dropdown from appearing.

	/*
	 * Add a "changed" class when the value might have changed.
	 *
	 * Note that the focusin and focusout events bubble, and the focus and blur events don't.
	 */
	jQuery( table_id + ' input.colorpicker' ).wpColorPicker( { change:sucomColorChanged } );
	jQuery( table_id + ' input' ).on( 'blur change', sucomMarkChanged );
	jQuery( table_id + ' textarea' ).on( 'blur change', sucomMarkChanged );
	jQuery( table_id + ' select' ).on( 'blur change', sucomMarkChanged );

	jQuery( document ).on( 'click', table_id + ' input[type="checkbox"][data-group]', function() {

		var actor   = jQuery( this );
		var checked = actor.prop( 'checked' );
		var group   = actor.data( 'group' );
		var grouped = jQuery( 'input[type="checkbox"][data-group="' + group + '"]' );

		grouped.prop( 'checked', checked );

		grouped.addClass( 'changed' );
	} );

	/*
	 * Add a "default" class when the value has changed and is the default.
	 */
	jQuery( table_id + ' input' ).on( 'change', sucomMarkDefault );
	jQuery( table_id + ' select' ).on( 'change', sucomMarkDefault );

	/*
	 * The 'sucom_init_metabox' event is hooked by sucomInitAdminMedia(), sucomInitToolTips().
	 */
	jQuery( document ).trigger( 'sucom_init_metabox', [ container_id, doing_ajax ] );

	/*
	 * If we're refreshing a metabox via ajax, trigger a 'show' event for each table row displayed.
	 */
	if ( doing_ajax ) {

		jQuery( table_id + ' tr' ).each( function() {

			if ( 'none' !== jQuery( this ).css( 'display' ) ) {

				jQuery( this ).show();
			}
		} );
	}

	/*
	 * When an editing page is submitted, disable unchanged fields in 'table.sucom-settings'.
	 */
	jQuery( 'form:not(#adv-settings)' ).each( function() {	// Exclude the Screen Options form.

		if ( jQuery( this ).has( table_id ).length != 0 ) {

			jQuery( this ).submit( function ( event ) {

				sucomDisableUnchanged( container_id );
			} );
		}

	} );
}

function sucomSelectLoadJson( select_id, json_name ) {

	/*
	 * A select ID must be provided.
	 *
	 * Example: "select_schema_type_for_home_posts"
	 */
	if ( ! select_id ) {

		return false;
	}

	/*
	 * The variable name of the JSON array.
	 *
	 * Example: "wpsso_select_person_names_4f65aec5b650c0f4acc0f033dc81d39f"
	 */
	if ( ! window[ json_name + '_keys' ] || ! window[ json_name + '_vals' ] ) {

		return false;
	}

	var container = jQuery( select_id + ':not( .json_loaded )' );

	if ( ! container.length ) {

		return false;
	}

	/*
	 * Avoid contention by signaling the json load early.
	 */
	container.addClass( 'json_loaded' );

	var default_value   = container.data( 'default-value' );
	var default_text    = container.data( 'default-text' );
	var selected_val    = container.val();
	var select_opt_html = ''

	/*
	 * json_encode() cannot encode an associative array - only an object or a standard numerically indexed array - and the
	 * object element order, when read by the browser, cannot be controlled. Firefox, for example, will sort an object
	 * numerically instead of maintaining the original object element order. For this reason, we must use different arrays for
	 * the array keys and their values.
	 */
	jQuery.each( window[ json_name + '_keys' ], function ( index, option_value ) {

		label_transl = window[ json_name + '_vals' ][ index ];

		if ( 'string' === typeof option_value && option_value.indexOf( ':optgroup-' ) > 0 ) {

			if ( option_value.indexOf( ':optgroup-begin' ) > 0 ) {

				select_opt_html += '<optgroup label="' + label_transl + '">';

			} else select_opt_html += '</optgroup>';	/* ':optgroup-end' */

		} else {

			select_opt_html += '<option value="' + option_value + '"';

			if ( option_value == selected_val ) {	/* Allow numeric string/integer comparison. */

				select_opt_html += ' selected="selected"';
			}

			if ( default_value == option_value ) {	/* Allow numeric string/integer comparison. */

				label_transl += ' ' + default_text;
			}

			select_opt_html += '>' + label_transl + '</option>';
		}
	} );

	/*
	 * Update the select option list.
	 *
	 * Do not trigger a change event as the selected option has not changed. ;-)
	 */
	container.empty();

	container.append( select_opt_html );
}

function sucomSelectUniquePair( main_id, other_id ) {

	var main      = jQuery( main_id );
	var other     = jQuery( other_id );
	var main_val  = main.val();
	var other_val = other.val();

	if ( 'none' !== main_val ) {	// If the main select has a value.

		if ( 'none' !== other_val ) {	// Maybe set the other select value to 'none'.

			other.trigger( 'sucom_load_json' ).val( 'none' ).trigger( 'change' );
		}

		other.addClass( 'disabled' );	// Disable the other select.

	} else {

		other.removeClass( 'disabled' );	// Re-enable the other select.
	}
}

function sucomTabs( metabox_name, tab_name ) {

	metabox_name = metabox_name ? metabox_name : '_default';
	tab_name     = tab_name ? tab_name : '_default';

	var scroll_to_tab_id = '';
	var location_hash    = window.location.hash;
	var active_tab_class = '.sucom-tabset' + metabox_name + '-tab' + tab_name;
	var tabs_vert_height = jQuery( 'ul.sucom-metabox-tabs' + metabox_name + '.vertical' ).height();

	/*
	 * Set the minimum height of settings containers to the height of the vertical tabs.
	 */
	if ( tabs_vert_height ) {

		jQuery( 'div.sucom-tabset' + metabox_name ).css( { 'min-height': tabs_vert_height + 'px' } );
	}

	if ( location_hash !== '' && location_hash.search( 'sucom-tabset' + metabox_name + '-tab_' ) !== -1 ) {

		active_tab_class = location_hash.replace( '#', '.' );
		scroll_to_tab_id = 'div#sucom-metabox-tabs' + metabox_name;
	}

	jQuery( active_tab_class ).addClass( 'active' );
	jQuery( active_tab_class + '-msg' ).addClass( 'active' );
	jQuery( '.sucom-metabox-tabs' ).show();

	if ( scroll_to_tab_id ) {

		/*
		 * Prevent scrolling the metabox into view if this is a block editor page or scrolling is disabled.
		 */
		var block_editor_content = jQuery( 'div.interface-interface-skeleton__content' );
		var is_block_editor      = block_editor_content.length ? true : false;
		var allow_scroll_to_hash = 'undefined' === typeof window.allowScrollToHash ? true : window.allowScrollToHash;

		if ( ! is_block_editor && allow_scroll_to_hash ) {

			sucomScrollIntoView( scroll_to_tab_id );
		}
	}

	jQuery( 'a.sucom-tablink' + metabox_name ).on( 'click', function(){

		jQuery( 'ul.sucom-metabox-tabs' + metabox_name + ' li' ).removeClass( 'active' );
		jQuery( '.sucom-tabset' + metabox_name ).removeClass( 'active' );
		jQuery( '.sucom-tabset' + metabox_name + '-msg' ).removeClass( 'active' );

		/*
		 * Example tablink:
		 *
		 * <a class="sucom-tablink sucom-tablink_sso sucom-tablink-icon sucom-tablink-href_edit_general" href="#sucom-tabset_sso-tab_edit_general"></a>
		 * <a class="sucom-tablink sucom-tablink_sso sucom-tablink-text sucom-tablink-href_edit_general" href="#sucom-tabset_sso-tab_edit_general">Edit General</a>
		 */
		var href = jQuery( this ).attr( 'href' ).replace( '#', '' );

		jQuery( '.' + href ).addClass( 'active' );
		jQuery( '.' + href + '-msg' ).addClass( 'active' );
		jQuery( this ).parent().addClass( 'active' );

		scroll_to_tab_id = 'div#sucom-metabox-tabs' + metabox_name;

		sucomScrollIntoView( scroll_to_tab_id );
	} );
}

function sucomScrollIntoView( container_id ) {

	if ( ! container_id ) return false;	// A container id string is required.

	var wpbody_content   = jQuery( 'div#wpbody-content' );	// Located below the admin toolbar.
	var container        = jQuery( container_id );

	if ( ! wpbody_content.length || ! container.length ) return false;

	var block_editor_content = jQuery( 'div.interface-interface-skeleton__content' );	// Page might be a block editor container.
	var toolbar_offset       = wpbody_content.offset().top;	// Just under the admin toolbar.
	var footer_offset        = 0;
	var viewport             = {};
       	var bounds               = {};
	var scroll_offset        = 0;

	viewport.top    = jQuery( window ).scrollTop();
	viewport.bottom = viewport.top + jQuery( window ).height();

	bounds.top    = container.offset().top;
	bounds.bottom = bounds.top + container.outerHeight();

	if ( ! bounds.top || ! bounds.bottom ) {	// Just in case.

		return false;
	}

	if ( block_editor_content.length ) {	// This is a block editor page.

		var editor_top    = jQuery( 'div.edit-post-visual-editor' ).offset().top;	// Block editor section.
		var footer_offset = jQuery( 'div.interface-interface-skeleton__footer' ).height();

		toolbar_offset   = block_editor_content.offset().top;	// Just under the 'interface-interface-skeleton__header'.
		scroll_container = block_editor_content;
		scroll_offset    = bounds.top - editor_top + 1;

	} else {

		scroll_container = jQuery( 'html, body' );
		scroll_offset    = bounds.top - toolbar_offset;
	}

	if ( bounds.top < viewport.top + toolbar_offset || bounds.bottom > viewport.bottom - footer_offset ) {

		scroll_container.stop().animate( { scrollTop:scroll_offset }, 'fast' );
	}
}

/*
 * Example: sucomViewUnhideRows( 'sucom-tabset_doc_types-tab_schema_types', 'basic' )
 */
function sucomViewUnhideRows( container_id, show_opts_key, hide_in_pre ) {

	hide_in_pre = hide_in_pre ? hide_in_pre : 'hide_in';

	if ( ! container_id ) {	// A container id string is required.

		return false;
	}

	var message = jQuery( 'div.' + container_id + '-msg' );

	if ( ! message.length ) {	// Just in case.

		return false;
	}

	message.hide();

	jQuery( 'div.' + container_id ).find( '.' + hide_in_pre + '_' + show_opts_key ).show();

	var parent_id = message.parent( 'div' ).attr( 'id' );

	sucomScrollIntoView( 'div#' + parent_id );
}

/*
 * Example: sucomChangeHideUnhideRows( "hide_schema_type", "hide_schema_type_article" );
 */
function sucomChangeHideUnhideRows( row_hide_class, row_show_class ) {

	if ( row_hide_class ) {

		row_hide_class = sucomSanitizeCssId( row_hide_class );

		jQuery( 'tr.' + row_hide_class ).hide();
	}

	if ( row_show_class ) {

		row_show_class = sucomSanitizeCssId( row_show_class );

		jQuery( 'tr.' + row_show_class ).show();
	}
}

function sucomSelectChangeRedirect( name, value, redirect_url ) {

	url = redirect_url + window.location.hash;

        window.location = url.replace( '%%' + name + '%%', value );
}

/*
 * Softly disable input fields using the 'disabled' CSS class instead of using the standard 'disabled' HTML tag attribute (which
 * prevents values from being submitted).
 */
function sucomBlurDisabled( e ) {

	var is_disabled = jQuery( this ).hasClass( 'disabled' );

	if ( is_disabled ) {

		this.blur();

		window.focus();

		e.preventDefault();

		e.stopPropagation();
	}
}

/*
 * Add a "changed" class when the value might have changed.
 */
function sucomMarkChanged( e, el ) {

	if ( 'undefined' === typeof el ) {

		el = jQuery( this );
	}

	el.addClass( 'changed' );

	jQuery( el ).trigger( 'sucom_changed' );
}

/*
 * Add a "default" class when the value has changed and is the default.
 */
function sucomMarkDefault( e, el ) {

	if ( this.hasAttribute( 'data-default-value' ) ) {

		if ( 'undefined' === typeof el ) {

			el = jQuery( this );
		}

		var value     = this.value;
		var def_value = this.getAttribute( 'data-default-value' );

		if ( 'checkbox' == this.type ) {

			value = el.is( ':checked' ) ? 1 : 0;
		}

		if ( value == def_value ) {

			el.addClass( 'default' );

		} else {

			el.removeClass( 'default' );
		}
	}
}

function sucomPlaceholderDep( container_id, container_dep_id ) {

	var el      = jQuery( container_id );
	var dep_el  = jQuery( container_dep_id );
	var dep_val = dep_el.val();

	if ( '' === dep_val ) dep_val = dep_el.attr( 'placeholder' );

	el.attr( 'placeholder', dep_val ).change();
}

/*
 * A callback function for the wpColorPicker, which does not automatically update the input field value on changes.
 */
function sucomColorChanged( e, ui ) {

	var el    = jQuery( this );
	var name  = el.attr( 'name' );
	var value = ui.color.toString();

	sucomMarkChanged( e, el )
}

/*
 * sucomDisableUnchanged() should be called from a form submit event.
 *
 * Example: container_id = '#sucom_settings_form_general'
 */
function sucomDisableUnchanged( container_id ) {

	var table_id = 'table.sucom-settings';

	if ( 'string' === typeof container_id && container_id ) {

		table_id = container_id + ' ' + table_id;
	}

	jQuery( table_id + ' input[type="checkbox"]:not( .changed )' ).each( function() {

		var checkbox_name = jQuery( this ).attr( 'name' );

		if ( 'undefined' !== typeof checkbox_name && checkbox_name.length ) {

			is_checkbox_name = checkbox_name.replace( /^(.*)\[(.*)\]$/, '$1\\[is_checkbox_$2\\]' );

			jQuery( table_id + ' input[name="' + checkbox_name + '"]' ).prop( 'disabled', true );

			jQuery( table_id + ' input[name="' + is_checkbox_name + '"]' ).remove();
		}
	} );

	jQuery( table_id + ' input[type!="hidden"]:not( .changed )' ).prop( 'disabled', true );
	jQuery( table_id + ' textarea:not( .changed )' ).prop( 'disabled', true );
	jQuery( table_id + ' select:not( .changed )' ).prop( 'disabled', true );

	jQuery( table_id + ' .changed' ).prop( 'disabled', false );
}

function sucomToggle( css_id ) {

	jQuery( '#' + css_id ).toggle();

	return false;
}

Youez - 2016 - github.com/yon3zu
LinuXploit