📁
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.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
🗑️
🏷️
⬇️
✏️
🔒
📄
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: gulpfile.js
/* jshint node: true */ /* global $: true */ "use strict"; var gulp = require("gulp"), $ = require("gulp-load-plugins")(); var config = { js: [ "lib/jquery.mousewheel.pack.js", "source/jquery.fancybox.pack.js", "source/helpers/jquery.fancybox-buttons.js", "source/helpers/jquery.fancybox-thumbs.js", "source/helpers/jquery.fancybox-media.js" ], css: [ "source/jquery.fancybox.css", "source/helpers/jquery.fancybox-buttons.css", "source/helpers/jquery.fancybox-thumbs.css" ], images: [ "source/helpers/**/*.{jpg,png,svg,gif,webp,ico}", "source/*.{jpg,png,svg,gif,webp,ico}" ] }, dist = { images: "dist/images/fancybox", css: "dist/css", js: "dist/js" }; /* - |-------------------------------------------------------------------------- - | Gulp Front Tasks - |-------------------------------------------------------------------------- - | + * + * */ gulp.task("clean", function () { return gulp.src("dist", {read: false}) .pipe($.clean()); }); gulp.task("scripts", function () { return gulp.src(config.js) .pipe($.plumberNotifier()) .pipe($.concat("jquery.fancybox.min.js")) .pipe($.uglify()) .pipe(gulp.dest(dist.js)); }); gulp.task("styles", function () { return gulp.src(config.css) .pipe($.plumberNotifier()) .pipe($.concat("jquery.fancybox.min.css")) .pipe($.autoprefixer("last 5 version")) .pipe($.replace(/url\('?(.*)'?\)/g, "url('../images/fancybox/$1')")) .pipe($.replace("''", "'")) .pipe($.cleanCss({compatibility: 'ie8'})) .pipe(gulp.dest(dist.css)) }); gulp.task("images", function () { return gulp.src(config.images) .pipe($.newer(dist.images)) .pipe(gulp.dest(dist.images)); }); gulp.task('default', ["images", "styles", "scripts"]);
Save