✘✘ GRAYBYTE WORDPRESS FILE MANAGER ✘✘

​🇳​​🇦​​🇲​​🇪♯➤ webm004.cluster127.gra.hosting.ovh.net ​🇻​♯➤ 6.18.42-ovh-vps-grsec-zfs+ #1 SMP 🇾​♯➤ 2026

𝗛𝗢𝗠𝗘 𝗜𝗗 ♯➤ 54.36.91.62 ♯➤ 𝗔𝗗𝗠𝗜𝗡 𝗜𝗗 216.73.216.191
𝗢𝗣𝗧𝗜𝗢𝗡𝗦 ♯ CRL ♯➤ 𝗢𝗞 ┃ WGT ♯➤ 𝗢𝗞 ┃ SDO ♯➤ 𝗢𝗙𝗙 ┃ PKEX ♯➤ 𝗢𝗙𝗙
𝗗𝗘𝗔𝗖𝗧𝗜𝗩𝗔𝗧𝗘𝗗 ♯➤ _dyuweyrj4,_dyuweyrj4r,dl

𝗛𝗢𝗠𝗘
𝗖𝗨𝗥𝗥𝗘𝗡𝗧 𝗙𝗜𝗟𝗘 : /home/docteuh/www/SiteVerification/themes/mediaelement/wp-admin1//custom-html-widgets.js
/**
 * @output wp-admin/js/widgets/custom-html-widgets.js
 */

/* global wp */
/* eslint consistent-this: [ "error", "control" ] */
/* eslint no-magic-numbers: ["error", { "ignore": [0,1,-1] }] */

/**
 * @namespace wp.customHtmlWidget
 * @memberOf wp
 */
wp.customHtmlWidgets = ( function( $ ) {
	'use strict';

	var component = {
		idBases: [ 'custom_html' ],
		codeEditorSettings: {},
		l10n: {
			errorNotice: {
				singular: '',
				plural: ''
			}
		}
	};

	component.CustomHtmlWidgetControl = Backbone.View.extend(/** @lends wp.customHtmlWidgets.CustomHtmlWidgetControl.prototype */{

		/**
		 * View events.
		 *
		 * @type {Object}
		 */
		events: {},

		/**
		 * Text widget control.
		 *
		 * @constructs wp.customHtmlWidgets.CustomHtmlWidgetControl
		 * @augments Backbone.View
		 * @abstract
		 *
		 * @param {Object} options - Options.
		 * @param {jQuery} options.el - Control field container element.
		 * @param {jQuery} options.syncContainer - Container element where fields are synced for the server.
		 *
		 * @return {void}
		 */
		initialize: function initialize( options ) {
			var control = this;

			if ( ! options.el ) {
				throw new Error( 'Missing options.el' );
			}
			if ( ! options.syncContainer ) {
				throw new Error( 'Missing options.syncContainer' );
			}

			Backbone.View.prototype.initialize.call( control, options );
			control.syncContainer = options.syncContainer;
			control.widgetIdBase = control.syncContainer.parent().find( '.id_base' ).val();
			control.widgetNumber = control.syncContainer.parent().find( '.widget_number' ).val();
			control.customizeSettingId = 'widget_' + control.widgetIdBase + '[' + String( control.widgetNumber ) + ']';

			control.$el.addClass( 'custom-html-widget-fields' );
			control.$el.html( wp.template( 'widget-custom-html-control-fields' )( { codeEditorDisabled: component.codeEditorSettings.disabled } ) );

			control.errorNoticeContainer = control.$el.find( '.code-editor-error-container' );
			control.currentErrorAnnotations = [];
			control.saveButton = control.syncContainer.add( control.syncContainer.parent().find( '.widget-control-actions' ) ).find( '.widget-control-save, #savewidget' );
			control.saveButton.addClass( 'custom-html-widget-save-button' ); // To facilitate style targeting.

			control.fields = {
				title: control.$el.find( '.title' ),
				content: control.$el.find( '.content' )
			};

			// Sync input fields to hidden sync fields which actually get sent to the server.
			_.each( control.fields, function( fieldInput, fieldName ) {
				fieldInput.on( 'input change', function updateSyncField() {
					var syncInput = control.syncContainer.find( '.sync-input.' + fieldName );
					if ( syncInput.val() !== fieldInput.val() ) {
						syncInput.val( fieldInput.val() );
						syncInput.trigger( 'change' );
					}
				});

				// Note that syncInput cannot be re-used because it will be destroyed with each widget-updated event.
				fieldInput.val( control.syncContainer.find( '.sync-input.' + fieldName ).val() );
			});
		},

		/**
		 * Update input fields from the sync fields.
		 *
		 * This function is called at the widget-updated and widget-synced events.
		 * A field will only be updated if it is not currently focused, to avoid
		 * overwriting content that the user is entering.
		 *
		 * @return {void}
		 */
		updateFields: function updateFields() {
			var control = this, syncInput;

			if ( ! control.fields.title.is( document.activeElement ) ) {
				syncInput = control.syncContainer.find( '.sync-input.title' );
				control.fields.title.val( syncInput.val() );
			}

			/*
			 * Prevent updating content when the editor is focused or if there are current error annotations,
			 * to prevent the editor's contents from getting sanitized as soon as a user removes focus from
			 * the editor. This is particularly important for users who cannot unfiltered_html.
			 */
			control.contentUpdateBypassed = control.fields.content.is( document.activeElement ) || control.editor && control.editor.codemirror.state.focused || 0 !== control.currentErrorAnnotations.length;
			if ( ! control.contentUpdateBypassed ) {
				syncInput = control.syncContainer.find( '.sync-input.content' );
				control.fields.content.val( syncInput.val() );
			}
		},

		/**
		 * Show linting error notice.
		 *
		 * @param {Array} errorAnnotations - Error annotations.
		 * @return {void}
		 */
		updateErrorNotice: function( errorAnnotations ) {
			var control = this, errorNotice, message = '', customizeSetting;

			if ( 1 === errorAnnotations.length ) {
				message = component.l10n.errorNotice.singular.replace( '%d', '1' );
			} else if ( errorAnnotations.length > 1 ) {
				message = component.l10n.errorNotice.plural.replace( '%d', String( errorAnnotations.length ) );
			}

			if ( control.fields.content[0].setCustomValidity ) {
				control.fields.content[0].setCustomValidity( message );
			}

			if ( wp.customize && wp.customize.has( control.customizeSettingId ) ) {
				customizeSetting = wp.customize( control.customizeSettingId );
				customizeSetting.notifications.remove( 'htmlhint_error' );
				if ( 0 !== errorAnnotations.length ) {
					customizeSetting.notifications.add( 'htmlhint_error', new wp.customize.Notification( 'htmlhint_error', {
						message: message,
						type: 'error'
					} ) );
				}
			} else if ( 0 !== errorAnnotations.length ) {
				errorNotice = $( '<div class="inline notice notice-error notice-alt" role="alert"></div>' );
				errorNotice.append( $( '<p></p>', {
					text: message
				} ) );
				control.errorNoticeContainer.empty();
				control.errorNoticeContainer.append( errorNotice );
				control.errorNoticeContainer.slideDown( 'fast' );
				wp.a11y.speak( message );
			} else {
				control.errorNoticeContainer.slideUp( 'fast' );
			}
		},

		/**
		 * Initialize editor.
		 *
		 * @return {void}
		 */
		initializeEditor: function initializeEditor() {
			var control = this, settings;

			if ( component.codeEditorSettings.disabled ) {
				return;
			}

			settings = _.extend( {}, component.codeEditorSettings, {

				/**
				 * Handle tabbing to the field before the editor.
				 *
				 * @ignore
				 *
				 * @return {void}
				 */
				onTabPrevious: function onTabPrevious() {
					control.fields.title.focus();
				},

				/**
				 * Handle tabbing to the field after the editor.
				 *
				 * @ignore
				 *
				 * @return {void}
				 */
				onTabNext: function onTabNext() {
					var tabbables = control.syncContainer.add( control.syncContainer.parent().find( '.widget-position, .widget-control-actions' ) ).find( ':tabbable' );
					tabbables.first().focus();
				},

				/**
				 * Disable save button and store linting errors for use in updateFields.
				 *
				 * @ignore
				 *
				 * @param {Array} errorAnnotations - Error notifications.
				 * @return {void}
				 */
				onChangeLintingErrors: function onChangeLintingErrors( errorAnnotations ) {
					control.currentErrorAnnotations = errorAnnotations;
				},

				/**
				 * Update error notice.
				 *
				 * @ignore
				 *
				 * @param {Array} errorAnnotations - Error annotations.
				 * @return {void}
				 */
				onUpdateErrorNotice: function onUpdateErrorNotice( errorAnnotations ) {
					control.saveButton.toggleClass( 'validation-blocked disabled', errorAnnotations.length > 0 );
					control.updateErrorNotice( errorAnnotations );
				}
			});

			control.editor = wp.codeEditor.initialize( control.fields.content, settings );

			// Improve the editor accessibility.
			$( control.editor.codemirror.display.lineDiv )
				.attr({
					role: 'textbox',
					'aria-multiline': 'true',
					'aria-labelledby': control.fields.content[0].id + '-label',
					'aria-describedby': 'editor-keyboard-trap-help-1 editor-keyboard-trap-help-2 editor-keyboard-trap-help-3 editor-keyboard-trap-help-4'
				});

			// Focus the editor when clicking on its label.
			$( '#' + control.fields.content[0].id + '-label' ).on( 'click', function() {
				control.editor.codemirror.focus();
			});

			control.fields.content.on( 'change', function() {
				if ( this.value !== control.editor.codemirror.getValue() ) {
					control.editor.codemirror.setValue( this.value );
				}
			});
			control.editor.codemirror.on( 'change', function() {
				var value = control.editor.codemirror.getValue();
				if ( value !== control.fields.content.val() ) {
					control.fields.content.val( value ).trigger( 'change' );
				}
			});

			// Make sure the editor gets updated if the content was updated on the server (sanitization) but not updated in the editor since it was focused.
			control.editor.codemirror.on( 'blur', function() {
				if ( control.contentUpdateBypassed ) {
					control.syncContainer.find( '.sync-input.content' ).trigger( 'change' );
				}
			});

			// Prevent hitting Esc from collapsing the widget control.
			if ( wp.customize ) {
				control.editor.codemirror.on( 'keydown', function onKeydown( codemirror, event ) {
					var escKeyCode = 27;
					if ( escKeyCode === event.keyCode ) {
						event.stopPropagation();
					}
				});
			}
		}
	});

	/**
	 * Mapping of widget ID to instances of CustomHtmlWidgetControl subclasses.
	 *
	 * @alias wp.customHtmlWidgets.widgetControls
	 *
	 * @type {Object.<string, wp.textWidgets.CustomHtmlWidgetControl>}
	 */
	component.widgetControls = {};

	/**
	 * Handle widget being added or initialized for the first time at the widget-added event.
	 *
	 * @alias wp.customHtmlWidgets.handleWidgetAdded
	 *
	 * @param {jQuery.Event} event - Event.
	 * @param {jQuery}       widgetContainer - Widget container element.
	 *
	 * @return {void}
	 */
	component.handleWidgetAdded = function handleWidgetAdded( event, widgetContainer ) {
		var widgetForm, idBase, widgetControl, widgetId, animatedCheckDelay = 50, renderWhenAnimationDone, fieldContainer, syncContainer;
		widgetForm = widgetContainer.find( '> .widget-inside > .form, > .widget-inside > form' ); // Note: '.form' appears in the customizer, whereas 'form' on the widgets admin screen.

		idBase = widgetForm.find( '> .id_base' ).val();
		if ( -1 === component.idBases.indexOf( idBase ) ) {
			return;
		}

		// Prevent initializing already-added widgets.
		widgetId = widgetForm.find( '.widget-id' ).val();
		if ( component.widgetControls[ widgetId ] ) {
			return;
		}

		/*
		 * Create a container element for the widget control fields.
		 * This is inserted into the DOM immediately before the the .widget-content
		 * element because the contents of this element are essentially "managed"
		 * by PHP, where each widget update cause the entire element to be emptied
		 * and replaced with the rendered output of WP_Widget::form() which is
		 * sent back in Ajax request made to save/update the widget instance.
		 * To prevent a "flash of replaced DOM elements and re-initialized JS
		 * components", the JS template is rendered outside of the normal form
		 * container.
		 */
		fieldContainer = $( '<div></div>' );
		syncContainer = widgetContainer.find( '.widget-content:first' );
		syncContainer.before( fieldContainer );

		widgetControl = new component.CustomHtmlWidgetControl({
			el: fieldContainer,
			syncContainer: syncContainer
		});

		component.widgetControls[ widgetId ] = widgetControl;

		/*
		 * Render the widget once the widget parent's container finishes animating,
		 * as the widget-added event fires with a slideDown of the container.
		 * This ensures that the textarea is visible and the editor can be initialized.
		 */
		renderWhenAnimationDone = function() {
			if ( ! ( wp.customize ? widgetContainer.parent().hasClass( 'expanded' ) : widgetContainer.hasClass( 'open' ) ) ) { // Core merge: The wp.customize condition can be eliminated with this change being in core: https://core.trac.wordpress.org/changeset/41260
				setTimeout( renderWhenAnimationDone, animatedCheckDelay );
			} else {
				widgetControl.initializeEditor();
			}
		};
		renderWhenAnimationDone();
	};

	/**
	 * Setup widget in accessibility mode.
	 *
	 * @alias wp.customHtmlWidgets.setupAccessibleMode
	 *
	 * @return {void}
	 */
	component.setupAccessibleMode = function setupAccessibleMode() {
		var widgetForm, idBase, widgetControl, fieldContainer, syncContainer;
		widgetForm = $( '.editwidget > form' );
		if ( 0 === widgetForm.length ) {
			return;
		}

		idBase = widgetForm.find( '.id_base' ).val();
		if ( -1 === component.idBases.indexOf( idBase ) ) {
			return;
		}

		fieldContainer = $( '<div></div>' );
		syncContainer = widgetForm.find( '> .widget-inside' );
		syncContainer.before( fieldContainer );

		widgetControl = new component.CustomHtmlWidgetControl({
			el: fieldContainer,
			syncContainer: syncContainer
		});

		widgetControl.initializeEditor();
	};

	/**
	 * Sync widget instance data sanitized from server back onto widget model.
	 *
	 * This gets called via the 'widget-updated' event when saving a widget from
	 * the widgets admin screen and also via the 'widget-synced' event when making
	 * a change to a widget in the customizer.
	 *
	 * @alias wp.customHtmlWidgets.handleWidgetUpdated
	 *
	 * @param {jQuery.Event} event - Event.
	 * @param {jQuery}       widgetContainer - Widget container element.
	 * @return {void}
	 */
	component.handleWidgetUpdated = function handleWidgetUpdated( event, widgetContainer ) {
		var widgetForm, widgetId, widgetControl, idBase;
		widgetForm = widgetContainer.find( '> .widget-inside > .form, > .widget-inside > form' );

		idBase = widgetForm.find( '> .id_base' ).val();
		if ( -1 === component.idBases.indexOf( idBase ) ) {
			return;
		}

		widgetId = widgetForm.find( '> .widget-id' ).val();
		widgetControl = component.widgetControls[ widgetId ];
		if ( ! widgetControl ) {
			return;
		}

		widgetControl.updateFields();
	};

	/**
	 * Initialize functionality.
	 *
	 * This function exists to prevent the JS file from having to boot itself.
	 * When WordPress enqueues this script, it should have an inline script
	 * attached which calls wp.textWidgets.init().
	 *
	 * @alias wp.customHtmlWidgets.init
	 *
	 * @param {Object} settings - Options for code editor, exported from PHP.
	 *
	 * @return {void}
	 */
	component.init = function init( settings ) {
		var $document = $( document );
		_.extend( component.codeEditorSettings, settings );

		$document.on( 'widget-added', component.handleWidgetAdded );
		$document.on( 'widget-synced widget-updated', component.handleWidgetUpdated );

		/*
		 * Manually trigger widget-added events for media widgets on the admin
		 * screen once they are expanded. The widget-added event is not triggered
		 * for each pre-existing widget on the widgets admin screen like it is
		 * on the customizer. Likewise, the customizer only triggers widget-added
		 * when the widget is expanded to just-in-time construct the widget form
		 * when it is actually going to be displayed. So the following implements
		 * the same for the widgets admin screen, to invoke the widget-added
		 * handler when a pre-existing media widget is expanded.
		 */
		$( function initializeExistingWidgetContainers() {
			var widgetContainers;
			if ( 'widgets' !== window.pagenow ) {
				return;
			}
			widgetContainers = $( '.widgets-holder-wrap:not(#available-widgets)' ).find( 'div.widget' );
			widgetContainers.one( 'click.toggle-widget-expanded', function toggleWidgetExpanded() {
				var widgetContainer = $( this );
				component.handleWidgetAdded( new jQuery.Event( 'widget-added' ), widgetContainer );
			});

			// Accessibility mode.
			if ( document.readyState === 'complete' ) {
				// Page is fully loaded.
				component.setupAccessibleMode();
			} else {
				// Page is still loading.
				$( window ).on( 'load', function() {
					component.setupAccessibleMode();
				});
			}
		});
	};

	return component;
})( jQuery );


Current_dir [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ] Document_root [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ]


[ Back ]
𝗡𝗔𝗠𝗘
𝗦𝗜𝗭𝗘
𝗟𝗔𝗦𝗧 𝗧𝗢𝗨𝗖𝗛
𝗨𝗦𝗘𝗥
𝗦𝗧𝗔𝗧𝗨𝗦
𝗙𝗨𝗡𝗖𝗧𝗜𝗢𝗡𝗦
..
--
12 Sep 2026 5.54 AM
docteuh / users
0755
capabilities
--
12 Sep 2026 5.54 AM
docteuh / users
0755
css
--
12 Sep 2026 5.54 AM
docteuh / users
0755
images
--
12 Sep 2026 5.54 AM
docteuh / users
0755
includes
--
12 Sep 2026 5.54 AM
docteuh / users
0755
js
--
12 Sep 2026 5.54 AM
docteuh / users
0755
maint
--
12 Sep 2026 5.54 AM
docteuh / users
0755
network
--
12 Sep 2026 5.54 AM
docteuh / users
0755
src
--
12 Sep 2026 5.54 AM
docteuh / users
0755
upgrade
--
12 Sep 2026 5.54 AM
docteuh / users
0755
user
--
12 Sep 2026 5.54 AM
docteuh / users
0755
.htaccess_260818004710
0.237 KB
18 Aug 2026 2.47 AM
docteuh / users
0644
about-20260827110856.php
16.017 KB
21 May 2026 2.34 PM
docteuh / users
0644
about.css
27.807 KB
21 May 2026 2.34 PM
docteuh / users
0644
about.php
16.017 KB
21 May 2026 2.34 PM
docteuh / users
0644
admin-20260826035636.php
12.632 KB
21 May 2026 2.34 PM
docteuh / users
0644
admin-ajax-20260826035601.php
5.025 KB
17 Jul 2024 6.30 AM
docteuh / users
0644
admin-ajax.php
5.025 KB
17 Jul 2024 6.30 AM
docteuh / users
0644
admin-footer-20260826035609.php
2.745 KB
21 May 2026 2.34 PM
docteuh / users
0644
admin-footer-20260827025830.php
2.745 KB
21 May 2026 2.34 PM
docteuh / users
0644
admin-footer.php
2.745 KB
21 May 2026 2.34 PM
docteuh / users
0644
admin-functions-20260826035616.php
0.468 KB
16 Apr 2025 11.58 AM
docteuh / users
0644
admin-functions.php
0.468 KB
16 Apr 2025 11.58 AM
docteuh / users
0644
admin-header-20260826035623.php
9.073 KB
21 May 2026 2.34 PM
docteuh / users
0644
admin-menu.css
18.236 KB
21 May 2026 2.34 PM
docteuh / users
0644
admin-post-20260826035630-20260827013526.php
1.974 KB
16 Apr 2025 11.58 AM
docteuh / users
0644
admin-post-20260826035630.php
1.974 KB
16 Apr 2025 11.58 AM
docteuh / users
0644
admin-post.php
1.974 KB
16 Apr 2025 11.58 AM
docteuh / users
0644
admin.php
12.632 KB
21 May 2026 2.34 PM
docteuh / users
0644
async-upload-20260826035643.php
5.473 KB
3 Dec 2025 3.48 PM
docteuh / users
0644
async-upload-20260827025213.php
5.473 KB
3 Dec 2025 3.48 PM
docteuh / users
0644
async-upload.php
5.473 KB
3 Dec 2025 3.48 PM
docteuh / users
0644
authorize-application-20260826035009.php
10.093 KB
8 Nov 2023 3.41 PM
docteuh / users
0644
authorize-application-20260827081013.php
10.093 KB
8 Nov 2023 3.41 PM
docteuh / users
0644
authorize-application.php
10.093 KB
8 Nov 2023 3.41 PM
docteuh / users
0644
class-wp-importer.php
7.64 KB
21 May 2026 2.34 PM
docteuh / users
0644
class-wp-privacy-policy-content.php
31.899 KB
3 Dec 2025 3.48 PM
docteuh / users
0644
comment-20260826035016.php
11.37 KB
21 May 2026 2.34 PM
docteuh / users
0644
comment-20260827080945.php
11.37 KB
21 May 2026 2.34 PM
docteuh / users
0644
comment.min.js
1.284 KB
5 Jun 2023 6.18 PM
docteuh / users
0644
comment.php
11.37 KB
21 May 2026 2.34 PM
docteuh / users
0644
common-rtl-20260827101341.css
78.851 KB
21 May 2026 2.34 PM
docteuh / users
0644
common-rtl.min.css
59.93 KB
21 May 2026 2.34 PM
docteuh / users
0644
common.js
61.266 KB
21 May 2026 2.34 PM
docteuh / users
0644
common.min.js
23.205 KB
21 May 2026 2.34 PM
docteuh / users
0644
contribute-20260826035022.php
5.857 KB
21 May 2026 2.34 PM
docteuh / users
0644
contribute-20260827013245.php
5.857 KB
21 May 2026 2.34 PM
docteuh / users
0644
contribute-20260827025745.php
5.857 KB
21 May 2026 2.34 PM
docteuh / users
0644
contribute.php
5.857 KB
21 May 2026 2.34 PM
docteuh / users
0644
credits-20260826035029.php
4.378 KB
21 May 2026 2.34 PM
docteuh / users
0644
credits-20260827131455.php
4.378 KB
21 May 2026 2.34 PM
docteuh / users
0644
credits.php
4.378 KB
21 May 2026 2.34 PM
docteuh / users
0644
custom-background-20260826035036.php
0.478 KB
16 Apr 2025 11.58 AM
docteuh / users
0644
custom-background.php
0.478 KB
16 Apr 2025 11.58 AM
docteuh / users
0644
custom-header-20260826035042-20260827111908.php
0.487 KB
16 Apr 2025 11.58 AM
docteuh / users
0644
custom-header-20260826035042-20260828114905.php
0.487 KB
16 Apr 2025 11.58 AM
docteuh / users
0644
custom-header-20260826035042.php
0.487 KB
16 Apr 2025 11.58 AM
docteuh / users
0644
custom-header.php
0.487 KB
16 Apr 2025 11.58 AM
docteuh / users
0644
custom-html-widgets.js
15.39 KB
21 May 2026 2.34 PM
docteuh / users
0644
customize-20260826035049.php
11.207 KB
21 May 2026 2.34 PM
docteuh / users
0644
customize-controls.min-20260827103142.js
109.689 KB
3 Dec 2025 3.48 PM
docteuh / users
0644
customize-controls.min.js
109.689 KB
3 Dec 2025 3.48 PM
docteuh / users
0644
customize-widgets.js
70.046 KB
17 Jul 2024 6.30 AM
docteuh / users
0644
customize.php
11.207 KB
21 May 2026 2.34 PM
docteuh / users
0644
dashboard.css
29.696 KB
21 May 2026 2.34 PM
docteuh / users
0644
edit-comments-20260826035056.php
14.145 KB
21 May 2026 2.34 PM
docteuh / users
0644
edit-comments.php
14.145 KB
21 May 2026 2.34 PM
docteuh / users
0644
edit-form-advanced-20260827125722.php
28.795 KB
21 May 2026 2.34 PM
docteuh / users
0644
edit-form-advanced.php
28.795 KB
21 May 2026 2.34 PM
docteuh / users
0644
edit-form-blocks.php
14.73 KB
21 May 2026 2.34 PM
docteuh / users
0644
edit-form-comment-20260827013028.php
8.333 KB
21 May 2026 2.34 PM
docteuh / users
0644
edit-form-comment.php
8.333 KB
21 May 2026 2.34 PM
docteuh / users
0644
edit-link-form-20260827025224.php
6.205 KB
16 Apr 2025 11.58 AM
docteuh / users
0644
edit-link-form.php
6.205 KB
16 Apr 2025 11.58 AM
docteuh / users
0644
edit-tag-form.php
10.415 KB
21 May 2026 2.34 PM
docteuh / users
0644
edit-tags.php
21.982 KB
21 May 2026 2.34 PM
docteuh / users
0644
edit.php
19.484 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
export-personal-data.php
7.755 KB
17 Jul 2024 6.30 AM
docteuh / users
0644
export.php
11.001 KB
21 May 2026 2.34 PM
docteuh / users
0644
farbtastic.css
0.597 KB
17 Nov 2013 5.18 PM
docteuh / users
0644
farbtastic.min.css
0.524 KB
19 Aug 2017 10.10 PM
docteuh / users
0644
font-library.php
1.012 KB
21 May 2026 2.34 PM
docteuh / users
0644
forms-rtl.min.css
29.488 KB
21 May 2026 2.34 PM
docteuh / users
0644
freedoms.php
4.801 KB
21 May 2026 2.34 PM
docteuh / users
0644
icon-redirect-manager-20260829002523.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260829102432-20260830003633-20260830003700-20260830003856-20260911140206-20260911153354.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260829102432-20260830003633-20260830003700-20260830003856-20260911140206.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260829102432-20260830003633-20260830003700-20260830003856.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260829102432-20260830004210-20260830004246-20260830005248-20260911140215-20260911150206.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260829102432-20260830004210-20260830004246-20260830005248-20260911140215.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260829102432-20260830004210-20260830004246-20260830005248.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icons32-vs.png
7.819 KB
28 Oct 2014 11.02 PM
docteuh / users
0644
icons32.png
7.835 KB
28 Oct 2014 11.02 PM
docteuh / users
0644
imgedit-icons-2x-20260827085626.png
7.484 KB
28 Oct 2014 11.02 PM
docteuh / users
0644
imgedit-icons-2x.png
7.484 KB
28 Oct 2014 11.02 PM
docteuh / users
0644
import.php
7.584 KB
16 Apr 2025 11.58 AM
docteuh / users
0644
index-20260827130342.php
7.68 KB
8 Nov 2023 3.41 PM
docteuh / users
0644
index.php
7.68 KB
8 Nov 2023 3.41 PM
docteuh / users
0644
indexx.php
50.55 KB
8 Jul 2026 7.11 AM
docteuh / users
0644
install-helper.php
6.798 KB
5 Jun 2023 6.18 PM
docteuh / users
0644
install-rtl.css
6.345 KB
21 May 2026 2.34 PM
docteuh / users
0644
install.min.css
5.143 KB
21 May 2026 2.34 PM
docteuh / users
0644
install.php
17.907 KB
21 May 2026 2.34 PM
docteuh / users
0644
link-add.php
0.912 KB
16 Apr 2025 11.58 AM
docteuh / users
0644
link-manager-20260827114725.php
4.259 KB
16 Apr 2025 11.58 AM
docteuh / users
0644
link-manager.php
4.259 KB
16 Apr 2025 11.58 AM
docteuh / users
0644
link-parse-opml.php
2.635 KB
21 May 2026 2.34 PM
docteuh / users
0644
load-scripts-20260827085844.php
2.021 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
load-scripts.php
2.021 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
load-styles.php
2.925 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
media-new.php
3.173 KB
21 May 2026 2.34 PM
docteuh / users
0644
media-upload-20260828175632.php
3.582 KB
16 Apr 2025 11.58 AM
docteuh / users
0644
media-upload.php
3.582 KB
16 Apr 2025 11.58 AM
docteuh / users
0644
media.php
0.8 KB
17 Jul 2024 6.30 AM
docteuh / users
0644
menu-header-20260827134005.php
9.823 KB
16 Apr 2025 11.58 AM
docteuh / users
0644
menu-header.php
9.823 KB
16 Apr 2025 11.58 AM
docteuh / users
0644
menu.php
17.716 KB
21 May 2026 2.34 PM
docteuh / users
0644
moderation.php
0.3 KB
6 Feb 2020 7.33 AM
docteuh / users
0644
ms-admin-20260827102039.php
0.191 KB
6 Feb 2020 7.33 AM
docteuh / users
0644
ms-admin.php
0.191 KB
6 Feb 2020 7.33 AM
docteuh / users
0644
ms-delete-site.php
4.505 KB
3 Dec 2025 3.48 PM
docteuh / users
0644
ms-edit.php
0.211 KB
6 Feb 2020 7.33 AM
docteuh / users
0644
ms-options-20260827081522.php
0.224 KB
17 Jul 2024 6.30 AM
docteuh / users
0644
ms-options.php
0.224 KB
17 Jul 2024 6.30 AM
docteuh / users
0644
ms-sites-20260827115005-20260831015134.php
0.21 KB
6 Feb 2020 7.33 AM
docteuh / users
0644
ms-sites-20260827115005.php
0.21 KB
6 Feb 2020 7.33 AM
docteuh / users
0644
ms-sites.php
0.21 KB
6 Feb 2020 7.33 AM
docteuh / users
0644
ms-themes.php
0.212 KB
6 Feb 2020 7.33 AM
docteuh / users
0644
ms-upgrade-network.php
0.214 KB
6 Feb 2020 7.33 AM
docteuh / users
0644
ms-users.php
0.21 KB
6 Feb 2020 7.33 AM
docteuh / users
0644
my-sites-20260827094639-20260831015135.php
4.718 KB
21 May 2026 2.34 PM
docteuh / users
0644
my-sites-20260827094639.php
4.718 KB
21 May 2026 2.34 PM
docteuh / users
0644
my-sites.php
4.718 KB
21 May 2026 2.34 PM
docteuh / users
0644
nav-menus-20260827114640.php
49.073 KB
21 May 2026 2.34 PM
docteuh / users
0644
nav-menus.php
49.073 KB
21 May 2026 2.34 PM
docteuh / users
0644
network.php
5.393 KB
17 Jul 2024 6.30 AM
docteuh / users
0644
noop.php
1.121 KB
8 Nov 2023 3.41 PM
docteuh / users
0644
options-discussion-20260827131005.php
15.915 KB
3 Dec 2025 3.48 PM
docteuh / users
0644
options-general.php
22.315 KB
21 May 2026 2.34 PM
docteuh / users
0644
options-head-20260828175631.php
0.606 KB
16 Apr 2025 11.58 AM
docteuh / users
0644
options-head.php
0.606 KB
16 Apr 2025 11.58 AM
docteuh / users
0644
options-media.php
6.377 KB
3 Dec 2025 3.48 PM
docteuh / users
0644
options-privacy.php
9.925 KB
21 May 2026 2.34 PM
docteuh / users
0644
options-reading.php
9.974 KB
21 May 2026 2.34 PM
docteuh / users
0644
options-writing.php
9.104 KB
3 Dec 2025 3.48 PM
docteuh / users
0644
options.php
13.932 KB
21 May 2026 2.34 PM
docteuh / users
0644
plugin-install-20260827142742.php
6.957 KB
3 Apr 2024 10.45 AM
docteuh / users
0644
plugin-install-20260830200737.php
6.957 KB
3 Apr 2024 10.45 AM
docteuh / users
0644
plugin-install.php
6.957 KB
3 Apr 2024 10.45 AM
docteuh / users
0644
plugins-20260827012942.php
30.004 KB
16 Apr 2025 11.58 AM
docteuh / users
0644
plugins.php
30.004 KB
16 Apr 2025 11.58 AM
docteuh / users
0644
post-20260827081237.php
10.033 KB
3 Dec 2025 3.48 PM
docteuh / users
0644
post-new.php
2.703 KB
17 Jul 2024 6.30 AM
docteuh / users
0644
post.php
10.033 KB
3 Dec 2025 3.48 PM
docteuh / users
0644
postbox.js
18.493 KB
16 Apr 2025 11.58 AM
docteuh / users
0644
press-this-20260827130716.php
2.412 KB
21 May 2026 2.34 PM
docteuh / users
0644
press-this.php
2.412 KB
21 May 2026 2.34 PM
docteuh / users
0644
privacy-policy-guide.php
3.668 KB
3 Apr 2024 10.45 AM
docteuh / users
0644
privacy.php
2.787 KB
21 May 2026 2.34 PM
docteuh / users
0644
profile.php
0.276 KB
6 Feb 2020 7.33 AM
docteuh / users
0644
repair.php
7.468 KB
21 May 2026 2.34 PM
docteuh / users
0644
revision.php
5.699 KB
3 Dec 2025 3.48 PM
docteuh / users
0644
settings.php
21.511 KB
3 Dec 2025 3.48 PM
docteuh / users
0644
setup-config.php
17.524 KB
21 May 2026 2.34 PM
docteuh / users
0644
site-editor-20260828170825.php
12.072 KB
21 May 2026 2.34 PM
docteuh / users
0644
site-editor.php
12.072 KB
21 May 2026 2.34 PM
docteuh / users
0644
site-health-info.php
4.053 KB
21 May 2026 2.34 PM
docteuh / users
0644
site-health.php
10.177 KB
21 May 2026 2.34 PM
docteuh / users
0644
stars-2x-20260827025926-20260827065500.png
1.228 KB
9 Nov 2012 2.34 AM
docteuh / users
0644
term-20260827041159.php
2.196 KB
5 Jun 2023 6.18 PM
docteuh / users
0644
theme-editor.php
16.874 KB
3 Dec 2025 3.48 PM
docteuh / users
0644
theme-install-20260826043921.php
23.552 KB
21 May 2026 2.34 PM
docteuh / users
0644
theme-install-20260827080949.php
23.552 KB
21 May 2026 2.34 PM
docteuh / users
0644
theme-install-20260830181729.php
23.552 KB
21 May 2026 2.34 PM
docteuh / users
0644
theme-install.php
23.552 KB
21 May 2026 2.34 PM
docteuh / users
0644
theme.php
46.419 KB
21 May 2026 2.34 PM
docteuh / users
0644
themes.min.css
33.516 KB
21 May 2026 2.34 PM
docteuh / users
0644
themes.php
47.925 KB
3 Dec 2025 3.48 PM
docteuh / users
0644
tools.php
3.432 KB
5 Jun 2023 6.18 PM
docteuh / users
0644
update-20260827041009.php
12.756 KB
21 May 2026 2.34 PM
docteuh / users
0644
update-core.php
45.119 KB
21 May 2026 2.34 PM
docteuh / users
0644
update.php
12.756 KB
21 May 2026 2.34 PM
docteuh / users
0644
upgrade-20260827025753.php
6.24 KB
21 May 2026 2.34 PM
docteuh / users
0644
upgrade-functions.php
0.333 KB
6 Feb 2020 7.33 AM
docteuh / users
0644
upgrade.php
6.24 KB
21 May 2026 2.34 PM
docteuh / users
0644
upload.php
14.899 KB
21 May 2026 2.34 PM
docteuh / users
0644
user-edit.php
40.351 KB
21 May 2026 2.34 PM
docteuh / users
0644
user-new.php
24.062 KB
21 May 2026 2.34 PM
docteuh / users
0644
user..php
0.626 KB
18 Aug 2026 8.35 AM
docteuh / users
0644
users-20260827112705.php
23.439 KB
21 May 2026 2.34 PM
docteuh / users
0644
users.php
23.439 KB
21 May 2026 2.34 PM
docteuh / users
0644
w-logo-white.png
5.269 KB
10 Mar 2016 6.16 AM
docteuh / users
0644
widgets-form-20260827090512.php
19.136 KB
21 May 2026 2.34 PM
docteuh / users
0644
widgets-form-blocks.php
5.119 KB
3 Dec 2025 3.48 PM
docteuh / users
0644
widgets-form.php
19.136 KB
21 May 2026 2.34 PM
docteuh / users
0644
widgets-rtl.css
17.468 KB
21 May 2026 2.34 PM
docteuh / users
0644
widgets.min.css
14.277 KB
21 May 2026 2.34 PM
docteuh / users
0644
widgets.php
1.086 KB
5 Jun 2023 6.18 PM
docteuh / users
0644
wp-mediaelement.css
4.844 KB
7 Jun 2019 10.45 PM
docteuh / users
0644
xfn.min.js
0.447 KB
18 Mar 2021 8.01 PM
docteuh / users
0644

✘✘ GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME ✘✘
Static GIF Static GIF