Server IP : 162.213.251.212 / Your IP : 3.140.197.228 [ Web Server : LiteSpeed System : Linux business55.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : allssztx ( 535) PHP Version : 8.1.31 Disable Function : NONE Domains : 1 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/self/root/home/allssztx/www/PIQTV/wp-content/themes/woodmart/inc/admin/assets/js/ |
Upload File : |
/* global xtsAdminWishlistSettings */ (function($) { const woodmartWishlist = function() { function selectControl() { if ( typeof ($.fn.select2) === 'undefined' ) { return; } var $select = $('.wc-product-search'); if ($select.length > 0) { $select.each(function() { var $field = $(this); if ($field.hasClass('xts-field-inited')) { return; } $field.select2({ theme: 'xts', placeholder: 'Select a product', allowClear: true, ajax: { url: ajaxurl, data: function (params) { return { term : params.term, action : 'woocommerce_json_search_products_and_variations', security: $(this).attr('data-security'), }; }, processResults: function( data ) { var terms = []; if ( data ) { $.each( data, function( id, text ) { terms.push( { id: id, text: text } ); }); } return { results: terms }; }, cache: true }, minimumInputLength: 3, }); $field.addClass('xts-field-inited'); }); } } function userSelectControl() { if ( typeof ($.fn.select2) === 'undefined' ) { return; } var $select = $('.xts-users-search'); if ($select.length > 0) { $select.each(function() { var $field = $(this); if ($field.hasClass('xts-field-inited')) { return; } $field.select2({ theme: 'xts', placeholder: 'Select a user', allowClear: true, ajax: { url: ajaxurl, data: function (params) { return { term : params.term, action : 'woodmart_json_search_users', security : $(this).attr('data-security'), }; }, processResults: function(data) { var terms = []; if (data) { $.each( data, function( id, text ) { terms.push( { id: id, text: text } ); }); } return { results: terms }; }, cache: true }, minimumInputLength: 3, }); $field.addClass('xts-field-inited'); }); } } function dateControl() { if ( typeof ($.fn.datepicker) === 'undefined' ) { return; } var $dateInput = $('.date-picker'); if ($dateInput.length > 0) { $dateInput.each(function( ) { $(this).datepicker(); }); } } function createPromotion() { $('#doaction, #doaction2').on('click', function( e ) { if ( 'create-promotion' !== $('#bulk-action-selector-top').val() ) { return; } if ( ! confirm( xtsAdminWishlistSettings.send_promotional_confirm_text ) ) { e.preventDefault(); } }); $('.wd-create-promotion').on('click', function(e) { if ( $(this).hasClass('xts-disabled') || ! confirm( xtsAdminWishlistSettings.send_promotional_confirm_text ) ) { e.preventDefault(); } }); } return { init: function() { selectControl(); userSelectControl(); dateControl(); createPromotion(); } } } $(document).ready(function() { woodmartWishlist().init(); }); })(jQuery);