first commit

This commit is contained in:
DESKTOP-GBA0BK8\Admin
2023-04-08 12:19:53 -04:00
commit 7c8c8b1c76
4586 changed files with 2050693 additions and 0 deletions
@@ -0,0 +1,536 @@
( function( $ ) {
"use strict";
$( document ).ready( function() {
owpDemoImport.init();
} );
var owpDemoImport = {
importData: {},
allowPopupClosing: true,
init: function() {
var that = this;
// Categories filter
this.categoriesFilter();
// Search functionality.
$( '.owp-search-input' ).on( 'keyup', function() {
if ( 0 < $( this ).val().length ) {
// Hide all items.
$( '.owp-demo-wrap .themes' ).find( '.theme-wrap' ).hide();
// Show just the ones that have a match on the import name.
$( '.owp-demo-wrap .themes' ).find( '.theme-wrap[data-name*="' + $( this ).val().toLowerCase() + '"]' ).show();
} else {
$( '.owp-demo-wrap .themes' ).find( '.theme-wrap' ).show();
}
} );
// Prevent the popup from showing when the live preview button
$( '.owp-demo-wrap .theme-actions a.button' ).on( 'click', function( e ) {
e.stopPropagation();
} );
// Get demo data
$( '.owp-open-popup' ).click( function( e ) {
e.preventDefault();
// Vars
var $selected_demo = $( this ).data( 'demo-id' ),
$loading_icon = $( '.preview-' + $selected_demo ),
$disable_preview = $( '.preview-all-' + $selected_demo );
$loading_icon.show();
$disable_preview.show();
that.getDemoData( $selected_demo );
} );
$( document ).on( 'click' , '.install-now', this.installNow );
$( document ).on( 'click' , '.activate-now', this.activatePlugins );
$( document ).on( 'wp-plugin-install-success' , this.installSuccess );
$( document ).on( 'wp-plugin-installing' , this.pluginInstalling );
$( document ).on( 'wp-plugin-install-error' , this.installError );
},
// Category filter.
categoriesFilter: function() {
// Cache selector to all items
var $items = $( '.owp-demo-wrap .themes' ).find( '.theme-wrap' ),
fadeoutClass = 'owp-is-fadeout',
fadeinClass = 'owp-is-fadein',
animationDuration = 200;
// Hide all items.
var fadeOut = function () {
var dfd = $.Deferred();
$items.addClass( fadeoutClass );
setTimeout( function() {
$items.removeClass( fadeoutClass ).hide();
dfd.resolve();
}, animationDuration );
return dfd.promise();
};
var fadeIn = function ( category, dfd ) {
var filter = category ? '[data-categories*="' + category + '"]' : 'div';
if ( 'all' === category ) {
filter = 'div';
}
$items.filter( filter ).show().addClass( 'owp-is-fadein' );
setTimeout( function() {
$items.removeClass( fadeinClass );
dfd.resolve();
}, animationDuration );
};
var animate = function ( category ) {
var dfd = $.Deferred();
var promise = fadeOut();
promise.done( function () {
fadeIn( category, dfd );
} );
return dfd;
};
$( '.owp-navigation-link' ).on( 'click', function( event ) {
event.preventDefault();
// Remove 'active' class from the previous nav list items.
$( this ).parent().siblings().removeClass( 'active' );
// Add the 'active' class to this nav list item.
$( this ).parent().addClass( 'active' );
var category = this.hash.slice(1);
// show/hide the right items, based on category selected
var $container = $( '.owp-demo-wrap .themes' );
$container.css( 'min-width', $container.outerHeight() );
var promise = animate( category );
promise.done( function () {
$container.removeAttr( 'style' );
} );
} );
},
// Get demo data.
getDemoData: function( demo_name ) {
var that = this;
// Get import data
$.ajax( {
url: owpDemos.ajaxurl,
type: 'get',
data: {
action: 'owp_ajax_get_import_data',
demo_name: demo_name,
security: owpDemos.owp_import_data_nonce
},
complete: function( data ) {
that.importData = $.parseJSON( data.responseText );
}
} );
// Run the import
$.ajax( {
url: owpDemos.ajaxurl,
type: 'get',
data: {
action : 'owp_ajax_get_demo_data',
demo_name: demo_name,
demo_data_nonce: owpDemos.demo_data_nonce
},
complete: function( data ) {
that.runPopup( data );
// Vars
var $loading_icon = $( '.preview-' + demo_name ),
$disable_preview = $( '.preview-all-' + demo_name );
// Hide loader
$loading_icon.hide();
$disable_preview.hide();
}
} );
},
// Run popup.
runPopup: function( data ) {
var that = this
var innerWidth = $( 'html' ).innerWidth();
$( 'html' ).css( 'overflow', 'hidden' );
var hiddenInnerWidth = $( 'html' ).innerWidth();
$( 'html' ).css( 'margin-right', hiddenInnerWidth - innerWidth );
// Show popup
$( '#owp-demo-popup-wrap' ).fadeIn();
$( data.responseText ).appendTo( $( '#owp-demo-popup-content' ) );
// Close popup
$( '.owp-demo-popup-close, .owp-demo-popup-overlay' ).on( 'click', function( e ) {
e.preventDefault();
if ( that.allowPopupClosing === true ) {
that.closePopup();
}
} );
// Display the step two
$( '.owp-plugins-next' ).on( 'click', function( e ) {
e.preventDefault();
// Hide step one
$( '#owp-demo-plugins' ).hide();
// Display step two
$( '#owp-demo-import-form' ).show();
} );
// if clicked on import data button
$( '#owp-demo-import-form' ).submit( function( e ) {
e.preventDefault();
// Vars
var demo = $( this ).find( '[name="owp_import_demo"]' ).val(),
nonce = $( this ).find( '[name="owp_import_demo_data_nonce"]' ).val(),
contentToImport = [];
// Check what need to be imported
$( this ).find( 'input[type="checkbox"]' ).each( function() {
if ( $( this ).is( ':checked' ) === true ) {
contentToImport.push( $( this ).attr( 'name' ) );
}
} );
// Hide the checkboxes and show the loader
$( this ).hide();
$( '.owp-loader' ).show();
// Start importing the content
that.importContent( {
demo: demo,
nonce: nonce,
contentToImport: contentToImport,
isXML: $( '#owp_import_xml' ).is( ':checked' )
} );
} );
},
// importing the content.
importContent: function( importData ) {
var that = this,
currentContent,
importingLimit,
timerStart = Date.now(),
ajaxData = {
owp_import_demo: importData.demo,
owp_import_demo_data_nonce: importData.nonce
};
this.allowPopupClosing = false;
$( '.owp-demo-popup-close' ).fadeOut();
// When all the selected content has been imported
if ( importData.contentToImport.length === 0 ) {
// Show the imported screen after 1 second
setTimeout( function() {
$( '.owp-loader' ).hide();
$( '.owp-last' ).show();
}, 1000 );
// Notify the server that the importing process is complete
$.ajax( {
url: owpDemos.ajaxurl,
type: 'post',
data: {
action: 'owp_after_import',
owp_import_demo: importData.demo,
owp_import_demo_data_nonce: importData.nonce,
owp_import_is_xml: importData.isXML
},
complete: function( data ) {}
} );
this.allowPopupClosing = true;
$( '.owp-demo-popup-close' ).fadeIn();
return;
}
// Check the content that was selected to be imported.
for ( var key in this.importData ) {
// Check if the current item in the iteration is in the list of importable content
var contentIndex = $.inArray( this.importData[ key ][ 'input_name' ], importData.contentToImport );
// If it is:
if ( contentIndex !== -1 ) {
// Get a reference to the current content
currentContent = key;
// Remove the current content from the list of remaining importable content
importData.contentToImport.splice( contentIndex, 1 );
// Get the AJAX action name that corresponds to the current content
ajaxData.action = this.importData[ key ]['action'];
// After an item is found get out of the loop and execute the rest of the function
break;
}
}
// Tell the user which content is currently being imported
$( '.owp-import-status' ).append( '<p class="owp-importing">' + this.importData[ currentContent ]['loader'] + '</p>' );
// Tell the server to import the current content
var ajaxRequest = $.ajax( {
url: owpDemos.ajaxurl,
type: 'post',
data: ajaxData,
complete: function( data ) {
clearTimeout( importingLimit );
// Indicates if the importing of the content can continue
var continueProcess = true;
// Check if the importing of the content was successful or if there was any error
if ( data.status === 500 || data.status === 502 || data.status === 503 ) {
$( '.owp-importing' )
.addClass( 'owp-importing-failed' )
.removeClass( 'owp-importing' )
.text( owpDemos.content_importing_error + ' '+ data.status );
} else if ( data.responseText.indexOf( 'successful import' ) !== -1 ) {
$( '.owp-importing' ).addClass( 'owp-imported' ).removeClass( 'owp-importing' );
} else {
var errors = $.parseJSON( data.responseText ),
errorMessage = '';
// Iterate through the list of errors
for ( var error in errors ) {
errorMessage += errors[ error ];
// If there was an error with the importing of the XML file, stop the process
if ( error === 'xml_import_error' ) {
continueProcess = false;
}
}
// Display the error message
$( '.owp-importing' )
.addClass( 'owp-importing-failed' )
.removeClass( 'owp-importing' )
.text( errorMessage );
that.allowPopupClosing = true;
$( '.owp-demo-popup-close' ).fadeIn();
}
// Continue with the loading only if an important error was not encountered
if ( continueProcess === true ) {
// Load the next content in the list
that.importContent( importData );
}
}
} );
// Set a time limit of 15 minutes for the importing process.
importingLimit = setTimeout( function() {
// Abort the AJAX request
ajaxRequest.abort();
// Allow the popup to be closed
that.allowPopupClosing = true;
$( '.owp-demo-popup-close' ).fadeIn();
$( '.owp-importing' )
.addClass( 'owp-importing-failed' )
.removeClass( 'owp-importing' )
.text( owpDemos.content_importing_error );
}, 15 * 60 * 1000 );
},
// Close demo popup.
closePopup: function() {
$( 'html' ).css( {
'overflow': '',
'margin-right': ''
} );
// Hide loader
$( '.preview-icon' ).hide();
$( '.preview-all' ).hide();
// Hide demo popup
$( '#owp-demo-popup-wrap' ).fadeOut();
// Remove content in the popup
setTimeout( function() {
$( '#owp-demo-popup-content' ).html( '' );
}, 600);
},
// Install required plugins.
installNow: function( e ) {
e.preventDefault();
// Vars
var $button = $( e.target ),
$document = $( document );
if ( $button.hasClass( 'updating-message' ) || $button.hasClass( 'button-disabled' ) ) {
return;
}
if ( wp.updates.shouldRequestFilesystemCredentials && ! wp.updates.ajaxLocked ) {
wp.updates.requestFilesystemCredentials( e );
$document.on( 'credential-modal-cancel', function() {
var $message = $( '.install-now.updating-message' );
$message
.removeClass( 'updating-message' )
.text( wp.updates.l10n.installNow );
wp.a11y.speak( wp.updates.l10n.updateCancel, 'polite' );
} );
}
wp.updates.installPlugin( {
slug: $button.data( 'slug' )
} );
},
// Activate required plugins.
activatePlugins: function( e ) {
e.preventDefault();
// Vars
var $button = $( e.target ),
$init = $button.data( 'init' ),
$slug = $button.data( 'slug' );
if ( $button.hasClass( 'updating-message' ) || $button.hasClass( 'button-disabled' ) ) {
return;
}
$button.addClass( 'updating-message button-primary' ).html( owpDemos.button_activating );
$.ajax( {
url: owpDemos.ajaxurl,
type: 'POST',
data: {
action : 'owp_ajax_required_plugins_activate',
init : $init,
},
} ).done( function( result ) {
if ( result.success ) {
$button.removeClass( 'button-primary install-now activate-now updating-message' )
.attr( 'disabled', 'disabled' )
.addClass( 'disabled' )
.text( owpDemos.button_active );
}
} );
},
// Install success.
installSuccess: function( e, response ) {
e.preventDefault();
var $message = $( '.owp-plugin-' + response.slug ).find( '.button' );
// Transform the 'Install' button into an 'Activate' button.
var $init = $message.data('init');
$message.removeClass( 'install-now installed button-disabled updated-message' )
.addClass( 'updating-message' )
.html( owpDemos.button_activating );
// WordPress adds "Activate" button after waiting for 1000ms. So we will run our activation after that.
setTimeout( function() {
$.ajax( {
url: owpDemos.ajaxurl,
type: 'POST',
data: {
action : 'owp_ajax_required_plugins_activate',
init : $init,
},
} ).done( function( result ) {
if ( result.success ) {
$message.removeClass( 'button-primary install-now activate-now updating-message' )
.attr( 'disabled', 'disabled' )
.addClass( 'disabled' )
.text( owpDemos.button_active );
} else {
$message.removeClass( 'updating-message' );
}
} );
}, 1200 );
},
// Plugin installing.
pluginInstalling: function( e, args ) {
e.preventDefault();
var $card = $( '.owp-plugin-' + args.slug ),
$button = $card.find( '.button' );
$button.addClass( 'updating-message' );
},
// Plugin install error.
installError: function( e, response ) {
e.preventDefault();
var $card = $( '.owp-plugin-' + response.slug );
$card.removeClass( 'button-primary' ).addClass( 'disabled' ).html( wp.updates.l10n.installFailedShort );
}
};
} ) ( jQuery );
File diff suppressed because one or more lines are too long
@@ -0,0 +1,167 @@
var oe_installer = oe_installer || {};
jQuery( document ).ready( function( $ ) {
"use strict";
var is_loading = false;
/**
* Install the plugin
*/
oe_installer.install_plugin = function( el, plugin ) {
// Confirm activation
var r = confirm( oe_installer_localize.install_now );
if ( r ) {
is_loading = true;
el.addClass( 'installing' );
$.ajax( {
type : 'POST',
url : oe_installer_localize.ajax_url,
data : {
action : 'oe_plugin_installer',
plugin : plugin,
nonce : oe_installer_localize.admin_nonce,
dataType : 'json'
},
success: function( data ) {
if ( data ){
if ( data.status === 'success' ) {
el.attr( 'class', 'activate button button-primary' );
el.html( oe_installer_localize.activate_btn );
} else {
el.removeClass( 'installing' );
}
} else {
el.removeClass( 'installing' );
}
is_loading = false;
},
error: function( xhr, status, error ) {
console.log( status );
el.removeClass( 'installing' );
is_loading = false;
}
} );
}
}
/**
* Activate the plugin
*/
oe_installer.activate_plugin = function( el, plugin ) {
$.ajax( {
type : 'POST',
url : oe_installer_localize.ajax_url,
data : {
action : 'oe_plugin_activation',
plugin : plugin,
nonce : oe_installer_localize.admin_nonce,
dataType : 'json'
},
success: function( data ) {
if ( data ) {
if ( data.status === 'success' ) {
el.attr( 'class', 'installed button disabled' );
el.html( oe_installer_localize.installed_btn );
}
}
is_loading = false;
},
error: function( xhr, status, error ) {
console.log( status );
is_loading = false;
}
} );
};
/**
* Activate the premium lugin
*/
oe_installer.activate_premium_plugin = function( el, plugin ) {
$.ajax( {
type : 'POST',
url : oe_installer_localize.ajax_url,
data : {
action : 'oe_premium_plugin_activation',
plugin : plugin,
nonce : oe_installer_localize.admin_nonce,
dataType : 'json'
},
success: function( data ) {
if ( data ) {
if ( data.status === 'success' ) {
el.attr( 'class', 'installed button disabled' );
el.html( oe_installer_localize.installed_btn );
}
}
is_loading = false;
},
error: function( xhr, status, error ) {
console.log( status );
is_loading = false;
}
} );
};
/**
* Install/Activate Button Click
*/
$( document ).on( 'click', '.oe-plugin-installer a.button:not(.premium-link)', function( e ) {
var el = $( this ),
plugin = el.data( 'slug' );
e.preventDefault();
if ( ! el.hasClass( 'disabled' ) ) {
if ( is_loading ) return false;
// Installation
if ( el.hasClass( 'install' ) ) {
oe_installer.install_plugin( el, plugin );
}
// Activation
if ( el.hasClass( 'activate' ) ) {
oe_installer.activate_plugin( el, plugin );
}
}
} );
/**
* Activate Premium Extension
*/
$( document ).on( 'click', '.oe-plugin-installer a.button.premium-activation', function( e ) {
var el = $( this ),
plugin = el.data( 'slug' );
e.preventDefault();
if ( ! el.hasClass( 'disabled' ) ) {
if ( is_loading ) return false;
// Activation
if ( el.hasClass( 'activate' ) ) {
oe_installer.activate_premium_plugin( el, plugin );
}
}
} );
});
@@ -0,0 +1 @@
var oe_installer=oe_installer||{};jQuery(document).ready(function(a){"use strict";var b=!1;oe_installer.install_plugin=function(c,d){var e=confirm(oe_installer_localize.install_now);e&&(b=!0,c.addClass("installing"),a.ajax({type:"POST",url:oe_installer_localize.ajax_url,data:{action:"oe_plugin_installer",plugin:d,nonce:oe_installer_localize.admin_nonce,dataType:"json"},success:function(a){a&&"success"===a.status?(c.attr("class","activate button button-primary"),c.html(oe_installer_localize.activate_btn)):c.removeClass("installing"),b=!1},error:function(a,d,e){console.log(d),c.removeClass("installing"),b=!1}}))},oe_installer.activate_plugin=function(c,d){a.ajax({type:"POST",url:oe_installer_localize.ajax_url,data:{action:"oe_plugin_activation",plugin:d,nonce:oe_installer_localize.admin_nonce,dataType:"json"},success:function(a){a&&"success"===a.status&&(c.attr("class","installed button disabled"),c.html(oe_installer_localize.installed_btn)),b=!1},error:function(a,c,d){console.log(c),b=!1}})},oe_installer.activate_premium_plugin=function(c,d){a.ajax({type:"POST",url:oe_installer_localize.ajax_url,data:{action:"oe_premium_plugin_activation",plugin:d,nonce:oe_installer_localize.admin_nonce,dataType:"json"},success:function(a){a&&"success"===a.status&&(c.attr("class","installed button disabled"),c.html(oe_installer_localize.installed_btn)),b=!1},error:function(a,c,d){console.log(c),b=!1}})},a(document).on("click",".oe-plugin-installer a.button:not(.premium-link)",function(c){var d=a(this),e=d.data("slug");if(c.preventDefault(),!d.hasClass("disabled")){if(b)return!1;d.hasClass("install")&&oe_installer.install_plugin(d,e),d.hasClass("activate")&&oe_installer.activate_plugin(d,e)}}),a(document).on("click",".oe-plugin-installer a.button.premium-activation",function(c){var d=a(this),e=d.data("slug");if(c.preventDefault(),!d.hasClass("disabled")){if(b)return!1;d.hasClass("activate")&&oe_installer.activate_premium_plugin(d,e)}})});
@@ -0,0 +1,14 @@
{
"name": "Push Monkey Notification",
"short_name": "Notification",
"icons": [{
"src": "/static/js/chrome/images/test.png",
"sizes": "192x192",
"type": "image/png"
}],
"start_url": "./index.html?homescreen=1",
"display": "standalone",
"gcm_sender_id": "956785459164",
"//": "gcm_user_visible_only is only needed until Chrome 44 is in stable ",
"gcm_user_visible_only": true
}
@@ -0,0 +1,82 @@
var $j = jQuery.noConflict();
$j(document).ready(function(e) {
// Switcher buttons
(function () {
// Cache selector to all items
var $items = $j( '.oceanwp-modules .modules-inner' ).find( '.column-wrap' ),
fadeoutClass = 'is-fadeout',
fadeinClass = 'is-fadein',
animationDuration = 200;
// Hide all items.
var fadeOut = function () {
var dfd = jQuery.Deferred();
$items.addClass( fadeoutClass );
setTimeout( function() {
$items.removeClass( fadeoutClass ).hide();
dfd.resolve();
}, animationDuration );
return dfd.promise();
};
var fadeIn = function ( type, dfd ) {
var filter = type ? '[data-type*="' + type + '"]' : 'div';
if ( 'all' === type ) {
filter = 'div';
}
$items.filter( filter ).show().addClass( 'is-fadein' );
setTimeout( function() {
$items.removeClass( fadeinClass );
dfd.resolve();
}, animationDuration );
};
var animate = function ( type ) {
var dfd = jQuery.Deferred();
var promise = fadeOut();
promise.done( function () {
fadeIn( type, dfd );
} );
return dfd;
};
$j( '.oceanwp-modules .btn-switcher li a' ).on( 'click', function( event ) {
event.preventDefault();
// Remove 'active' class from the previous nav list items.
$j( this ).parent().siblings().removeClass( 'active' );
// Add the 'active' class to this nav list item.
$j( this ).parent().addClass( 'active' );
var type = this.hash.slice(1);
// show/hide the right items, based on type selected
var promise = animate( type );
promise.done();
} );
$j( document ).on( 'click', '#owp-switch-all', function() {
if ( $j( this ).is( ':checked' ) ) {
$j( this ).closest( '.oceanwp-modules' ).find( 'input.owp-checkbox' ).prop( 'checked', true );
} else {
$j( this ).closest( '.oceanwp-modules' ).find( 'input.owp-checkbox' ).prop( 'checked', false );
}
} );
}());
} );
@@ -0,0 +1 @@
var $j=jQuery.noConflict();$j(document).ready(function(e){function i(s){var e,n=jQuery.Deferred();return(e=jQuery.Deferred(),t.addClass(o),setTimeout(function(){t.removeClass(o).hide(),e.resolve()},200),e.promise()).done(function(){var e,o,i;o=n,i=(e=s)?'[data-type*="'+e+'"]':"div","all"===e&&(i="div"),t.filter(i).show().addClass("is-fadein"),setTimeout(function(){t.removeClass("is-fadein"),o.resolve()},200)}),n}var t,o;t=$j(".oceanwp-modules .modules-inner").find(".column-wrap"),o="is-fadeout",$j(".oceanwp-modules .btn-switcher li a").on("click",function(e){e.preventDefault(),$j(this).parent().siblings().removeClass("active"),$j(this).parent().addClass("active");var o=this.hash.slice(1);i(o).done()}),$j(document).on("click","#owp-switch-all",function(){$j(this).is(":checked")?$j(this).closest(".oceanwp-modules").find("input.owp-checkbox").prop("checked",!0):$j(this).closest(".oceanwp-modules").find("input.owp-checkbox").prop("checked",!1)})});