|
Server IP : 10.131.40.8 / Your IP : 216.73.216.37 Web Server : Apache System : Linux webd008.cluster131.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64 User : ludmqhh ( 137773) PHP Version : 8.4.10 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0705) : /home/ludmqhh/www/hotel-forum/wp-content/_plugins/stm-configurations/assets/js/ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
(function ($) {
"use strict";
$.stmTrigger = $.stmTrigger || {};
$.stmTrigger.wp_media = $.stmTrigger.wp_media || [];
$.stmTrigger.media_new = function () {
var $body = $("body");
$body.on('click', '.stm_upload_icon', $.stmTrigger.media_new_activate);
};
//intended for zip files only. if needed should be easy to expand in the future
$.stmTrigger.media_new_activate = function (event) {
event.preventDefault();
var clicked = $(this), options = clicked.data();
options.input_target = $('#' + options.target);
// Create the media frame.
var file_frame = wp.media(
{
frame: options.frame,
library: {type: options.type},
button: {text: options.button},
className: options['class']
});
file_frame.on('select update insert', function () {
$.stmTrigger.media_new_insert(file_frame, options);
});
//open the media frame
file_frame.open();
};
//insert the url of the zip file
$.stmTrigger.media_new_insert = function (file_frame, options) {
var state = file_frame.state(), selection = state.get('selection').first().toJSON();
options.input_target.val(selection.id).trigger('change')
$("body").trigger(options.trigger, [selection, options]);
}
$(document).ready(function () {
$.stmTrigger.media_new();
//Fonts Zip file upload
$("body").on('stm_insert_zip', $.stmTrigger.icon_insert);
//font manager
$("body").on('click', '.stm_del_icon', $.stmTrigger.icon_remove);
});
/************************************************************************
EXTRA FUNCTIONS, NOT NECESSARY FOR THE DEFAULT UPLOAD
*************************************************************************/
$.stmTrigger.icon_insert = function (event, selection, options) {
// clean the options field, we dont need to save a value
options.input_target.val("");
var manager = $('.stm_iconfont_manager');
var msg = $('#msg');
if (selection.subtype !== 'zip') {
$('.spinner').hide();
msg.html("<div class='error'><p>Please upload a valid ZIP file.<br/>You can create the file on icomoon.io</p></div>");
msg.show();
setTimeout(function () {
msg.slideUp();
}, 5000);
return;
}
// send request to server to extract the zip file, re arrange the content and save a config file
$.ajax({
type: "POST",
url: ajaxurl,
data: {
action: 'stm_ajax_add_zipped_font',
values: selection,
security: window.stm_data.stm_ajax_add_zipped_font
},
beforeSend: function () {
$('.spinner').css({
opacity: 0,
display: "block",
visibility: 'visible',
position: 'absolute',
top: '21px',
left: '345px'
}).animate({opacity: 1});
},
/*error: function()
{
alert('Couldn\'t add the font because the server didn’t respond.<br/>Please reload the page, then try again');
},*/
success: function (response) {
$('.spinner').hide();
if (response.match(/stm_font_added/)) {
msg.html("<div class='updated'><p>Font icon added successfully! Reloading the page... </p></div>");
msg.show();
setTimeout(function () {
msg.slideUp();
location.reload();
}, 5000);
}
else {
msg.html("<div class='error'><p>Couldn't add the font.<br/>The script returned the following error: " + response + "</p></div>");
msg.show();
setTimeout(function () {
msg.slideUp();
}, 5000);
}
if (typeof console != 'undefined') console.log(response);
//msg.fadeOut('slow');
}
});
}
$.stmTrigger.icon_remove = function (event) {
event.preventDefault();
var button = $(this),
parent = button.parents('.stm-available-font:eq(0)'),
manager = button.parents('.stm_iconfont_manager:eq(0)'),
all_fonts = manager.find('.stm-available-font'),
del_font = button.data('delete');
//alert(del_font);
var msg = $('#msg');
// send request to server to remove the folder and the database entry
$.ajax({
type: "POST",
url: ajaxurl,
data: {
action: 'stm_ajax_remove_zipped_font',
del_font: del_font,
},
beforeSend: function () {
$('.spinner').css({
opacity: 0,
display: "block",
visibility: 'visible',
position: 'absolute',
top: '21px',
left: '345px'
}).animate({opacity: 1});
},
error: function () {
$('.spinner').hide();
msg.html("<div class='error'><p>Couldn't remove the font because the server didn’t respond.<br/>Please reload the page, then try again</p></div>");
msg.show();
setTimeout(function () {
msg.slideUp();
}, 5000);
},
success: function (response) {
$('.spinner').hide();
if (response.match(/stm_font_removed/)) {
msg.html("<div class='updated'><p>Icon set deleted successfully! Reloading the page...</p></div>");
msg.show();
setTimeout(function () {
msg.slideUp();
location.reload();
}, 5000);
}
else {
msg.html("<p><div class='error'><p>Couldn't remove the font.<br/>Reloading the page...</p></div>");
msg.show();
setTimeout(function () {
msg.slideUp();
location.reload();
}, 5000);
}
if (typeof console != 'undefined') console.log(response);
//msg.fadeOut('slow');
},
complete: function (response) {
//alert(response);
}
});
}
$(document).ready(function(){
$('.stm_layout_font_enabler').on('click', function(){
$('.stm_layout_font_enabler').attr('disabled', 'disabled');
if(!$(this).hasClass('loading')) {
var font = $(this).attr('data-font');
$.ajax({
url: ajaxurl,
dataType: 'json',
context: this,
data: {
'font': font,
'action': 'stm_icons_load',
'security': window.stm_data.stm_icons_load
},
beforeSend: function () {
$(this).addClass('loading');
},
complete: function (data) {
$(this).removeClass('loading');
$('.stm_layout_font_enabler').removeAttr('disabled', 'disabled');
var dt = data.responseJSON;
$(this).text(dt.text);
$(this).removeClass(dt.r_class);
$(this).addClass(dt.class);
}
});
}
})
})
})(jQuery);