| Current File : /home/digitaw/www/wp-content/plugins/folders/templates/admin/folder-popup.php |
<?php
/**
* Admin folders popup data
*
* @author : Premio <contact@premio.io>
* @license : GPL2
* */
if (!defined('ABSPATH')) {
exit;
}
?>
<div class="folder-popup" id="folder-intro-popup">
<div class="folder-popup-box">
<div class="folder-popup-header">
<?php esc_html_e("Welcome to Folders", "folders") ?> 🎉
<button class="close-folder-popup"><span class="dashicons dashicons-no-alt"></span></button>
<div class="clear"></div>
</div>
<div class="folder-popup-content">
<?php printf(esc_html__("Select the places where you want Folders to appear (Media Library, Posts, Pages, Custom Posts). Need help? Visit our %1\$s", "folders"), '<a target="_blank" href="https://premio.io/help/folders/?utm_soruce=wordpressfolders">'.esc_html__("Help Center", "folders")."</a>.") ?>
<iframe width="420" height="240" src="https://www.youtube.com/embed/1SqDey4idlQ?rel=0"></iframe>
</div>
<div class="folder-popup-footer">
<button type="button"><?php esc_html_e("Go to Folders", "folders"); ?></button>
</div>
</div>
</div>
<script>
jQuery(document).ready(function(){
jQuery(document).on("click", ".folder-popup-box button, #folder-intro-popup", function(e){
e.stopPropagation();
var nonceVal = "<?php echo esc_attr(wp_create_nonce("folder_update_popup_status")) ?>";
jQuery("#folder-intro-popup").remove();
jQuery.ajax({
type: 'POST',
url: ajaxurl,
data: {
action: 'folder_update_popup_status',
nonce: nonceVal
},
beforeSend: function (xhr) {
},
success: function (res) {
},
error: function (xhr, status, error) {
}
});
if(jQuery("#import-third-party-plugin-data").length) {
jQuery("#import-third-party-plugin-data").show();
} else if(jQuery("#wordpress-popup").length) {
jQuery("#wordpress-popup").show();
}
});
jQuery("#import-third-party-plugin-data").hide();
jQuery(document).on("click", "#cancel-plugin-import", function(){
jQuery.ajax({
type: 'POST',
url: ajaxurl,
data: {
action: 'wcp_update_folders_import_status',
nonce: '<?php echo esc_attr(wp_create_nonce("folders_import_3rd_party_data")) ?>'
},
beforeSend: function (xhr) {
},
success: function (res) {
},
error: function (xhr, status, error) {
}
});
if(jQuery("#wordpress-popup").length) {
jQuery("#wordpress-popup").show();
}
});
jQuery(document).on("click", ".folder-popup-box", function(e){
e.stopPropagation();
});
});
</script>