Файловый менеджер - Редактировать - /home/infrafs/INFRABIKEIT/wp-content/plugins/settings.zip
Назад
PK k4\k�fN index.phpnu �[��� <?php //silentPK k4\&�Ta�F �F general.phpnu �[��� <?php defined('ABSPATH') || defined('DUPXABSPATH') || exit; global $wp_version; global $wpdb; $action_updated = null; $action_response = __("General Settings Saved", 'duplicator'); //SAVE RESULTS if (isset($_POST['action']) && $_POST['action'] == 'save') { //Nonce Check if (!isset($_POST['dup_settings_save_nonce_field']) || !wp_verify_nonce($_POST['dup_settings_save_nonce_field'], 'dup_settings_save')) { die('Invalid token permissions to perform this request.'); } DUP_Settings::Set('uninstall_settings', isset($_POST['uninstall_settings']) ? "1" : "0"); DUP_Settings::Set('uninstall_files', isset($_POST['uninstall_files']) ? "1" : "0"); DUP_Settings::Set('uninstall_tables', isset($_POST['uninstall_tables']) ? "1" : "0"); DUP_Settings::Set('wpfront_integrate', isset($_POST['wpfront_integrate']) ? "1" : "0"); DUP_Settings::Set('package_debug', isset($_POST['package_debug']) ? "1" : "0"); $skip_archive_scan = filter_input(INPUT_POST, 'skip_archive_scan', FILTER_VALIDATE_BOOLEAN); DUP_Settings::Set('skip_archive_scan', $skip_archive_scan); $unhook_third_party_js = filter_input(INPUT_POST, 'unhook_third_party_js', FILTER_VALIDATE_BOOLEAN); DUP_Settings::Set('unhook_third_party_js', $unhook_third_party_js); $unhook_third_party_css = filter_input(INPUT_POST, 'unhook_third_party_css', FILTER_VALIDATE_BOOLEAN); DUP_Settings::Set('unhook_third_party_css', $unhook_third_party_css); switch (filter_input(INPUT_POST, 'storage_position', FILTER_DEFAULT)) { case DUP_Settings::STORAGE_POSITION_LECAGY: $setPostion = DUP_Settings::STORAGE_POSITION_LECAGY; break; case DUP_Settings::STORAGE_POSITION_WP_CONTENT: default: $setPostion = DUP_Settings::STORAGE_POSITION_WP_CONTENT; break; } if (DUP_Settings::setStoragePosition($setPostion) != true) { $targetFolder = ($setPostion === DUP_Settings::STORAGE_POSITION_WP_CONTENT) ? DUP_Settings::getSsdirPathWpCont() : DUP_Settings::getSsdirPathLegacy(); ?> <div id="message" class="notice notice-error is-dismissible"> <p> <b><?php esc_html_e('Storage folder move problem'); ?></b> </p> <p> <?php echo sprintf(__('Duplicator can\'t change the storage folder to <i>%s</i>', 'duplicator'), esc_html($targetFolder)); ?><br> <?php echo sprintf(__('Check the parent folder permissions. ( <i>%s</i> )', 'duplicator'), esc_html(dirname($targetFolder))); ?> </p> </div> <?php } if (isset($_REQUEST['trace_log_enabled'])) { dup_log::trace("#### trace log enabled"); // Trace on if (DUP_Settings::Get('trace_log_enabled') == 0) { DUP_Log::DeleteTraceLog(); } DUP_Settings::Set('trace_log_enabled', 1); } else { dup_log::trace("#### trace log disabled"); // Trace off DUP_Settings::Set('trace_log_enabled', 0); } DUP_Settings::Save(); $action_updated = true; DUP_Util::initSnapshotDirectory(); } $trace_log_enabled = DUP_Settings::Get('trace_log_enabled'); $uninstall_settings = DUP_Settings::Get('uninstall_settings'); $uninstall_files = DUP_Settings::Get('uninstall_files'); $uninstall_tables = DUP_Settings::Get('uninstall_tables'); $wpfront_integrate = DUP_Settings::Get('wpfront_integrate'); $wpfront_ready = apply_filters('wpfront_user_role_editor_duplicator_integration_ready', false); $package_debug = DUP_Settings::Get('package_debug'); $skip_archive_scan = DUP_Settings::Get('skip_archive_scan'); $unhook_third_party_js = DUP_Settings::Get('unhook_third_party_js'); $unhook_third_party_css = DUP_Settings::Get('unhook_third_party_css'); ?> <style> form#dup-settings-form input[type=text] {width: 400px; } div.dup-feature-found {padding:3px; border:1px solid silver; background: #f7fcfe; border-radius: 3px; width:400px; font-size: 12px} div.dup-feature-notfound {padding:5px; border:1px solid silver; background: #fcf3ef; border-radius: 3px; width:500px; font-size: 13px; line-height: 18px} table.nested-table-data td {padding:5px 5px 5px 0} </style> <form id="dup-settings-form" action="<?php echo admin_url('admin.php?page=duplicator-settings&tab=general'); ?>" method="post"> <?php wp_nonce_field('dup_settings_save', 'dup_settings_save_nonce_field', false); ?> <input type="hidden" name="action" value="save"> <input type="hidden" name="page" value="duplicator-settings"> <?php if ($action_updated) : ?> <div id="message" class="notice notice-success is-dismissible dup-wpnotice-box"><p><?php echo esc_html($action_response); ?></p></div> <?php endif; ?> <h3 class="title"><?php esc_html_e("Plugin", 'duplicator') ?> </h3> <hr size="1" /> <table class="form-table"> <tr valign="top"> <th scope="row"><label><?php esc_html_e("Version", 'duplicator'); ?></label></th> <td> <?php echo DUPLICATOR_VERSION . ' '; echo (stristr(DUPLICATOR_VERSION_BUILD, 'rc')) ? "<span style='color:red'>[" . DUPLICATOR_VERSION_BUILD . "]</span>" : "<span style='color:gray'>[" . DUPLICATOR_VERSION_BUILD . "]</span>"; ?> </td> </tr> <tr valign="top"> <th scope="row"><label><?php esc_html_e("Uninstall", 'duplicator'); ?></label></th> <td> <p> <input type="checkbox" name="uninstall_settings" id="uninstall_settings" <?php echo ($uninstall_settings) ? 'checked="checked"' : ''; ?> /> <label for="uninstall_settings"><?php esc_html_e("Delete Plugin Settings", 'duplicator') ?> </label> </p> <p> <input type="checkbox" name="uninstall_files" id="uninstall_files" <?php echo ($uninstall_files) ? 'checked="checked"' : ''; ?> /> <label for="uninstall_files"><?php esc_html_e("Delete Entire Storage Directory", 'duplicator') ?></label><br/> </p> </td> </tr> </table> <h3 class="title"><?php esc_html_e("Debug", 'duplicator') ?> </h3> <hr size="1" /> <table class="form-table"> <tr> <th scope="row"><label><?php esc_html_e("Debugging", 'duplicator'); ?></label></th> <td> <input type="checkbox" name="package_debug" id="package_debug" <?php echo ($package_debug) ? 'checked="checked"' : ''; ?> /> <label for="package_debug"><?php esc_html_e("Enable debug options throughout user interface", 'duplicator'); ?></label> </td> </tr> <tr valign="top"> <th scope="row"><label><?php esc_html_e("Trace Log", 'duplicator'); ?></label></th> <td> <input type="checkbox" name="trace_log_enabled" id="trace_log_enabled" <?php echo ($trace_log_enabled == 1) ? 'checked="checked"' : ''; ?> /> <label for="trace_log_enabled"><?php esc_html_e("Enabled", 'duplicator') ?> </label><br/> <p class="description"> <?php esc_html_e('Turns on detailed operation logging. Logging will occur in both PHP error and local trace logs.'); echo ('<br/>'); esc_html_e('WARNING: Only turn on this setting when asked to by support as tracing will impact performance.', 'duplicator'); ?> </p><br/> <button class="button" <?php if (!DUP_Log::TraceFileExists()) { echo 'disabled'; } ?> onclick="Duplicator.Pack.DownloadTraceLog(); return false"> <i class="fa fa-download"></i> <?php echo esc_html__('Download Trace Log', 'duplicator').' ('.DUP_LOG::GetTraceStatus().')'; ?> </button> </td> </tr> </table><br/> <!-- =============================== ADVANCED SETTINGS --> <h3 class="title"><?php esc_html_e('Advanced', 'duplicator'); ?> </h3> <hr size="1" /> <table class="form-table"> <tr> <th scope="row"><label><?php esc_html_e("Settings", 'duplicator'); ?></label></th> <td> <button class="button" onclick="Duplicator.Pack.ConfirmResetAll(); return false;"> <i class="fas fa-redo fa-sm"></i> <?php esc_html_e('Reset Packages', 'duplicator'); ?> </button> <p class="description"> <?php esc_html_e("This process will reset all packages by deleting those without a completed status, reset the active package id and perform a " ."cleanup of the build tmp file.", 'duplicator'); ?> <i class="fas fa-question-circle fa-sm" data-tooltip-title="<?php esc_attr_e("Reset Settings", 'duplicator'); ?>" data-tooltip="<?php esc_attr_e('This action should only be used if the packages screen is having issues or a build is stuck.', 'duplicator'); ?>"></i> </p> </td> </tr> <tr valign="top"> <th scope="row"><label><?php esc_html_e('Archive scan', 'duplicator'); ?></label></th> <td> <input type="checkbox" name="skip_archive_scan" id="_skip_archive_scan" <?php checked($skip_archive_scan, true); ?> value="1" /> <label for="_skip_archive_scan"><?php esc_html_e("Skip", 'duplicator') ?> </label><br/> <p class="description"> <?php esc_html_e('If enabled all files check on scan will be skipped before package creation. ' .'In some cases, this option can be beneficial if the scan process is having issues running or returning errors.', 'duplicator'); ?> </p> </td> </tr> <tr> <th scope="row"><label><?php esc_html_e("Foreign JavaScript", 'duplicator'); ?></label></th> <td> <input type="checkbox" name="unhook_third_party_js" id="unhook_third_party_js" <?php checked($unhook_third_party_js, true); ?> value="1"/> <label for="unhook_third_party_js"><?php esc_html_e("Disable", 'duplicator'); ?></label> <br/> <p class="description"> <?php esc_html_e("Check this option if other plugins/themes JavaScript files are conflicting with Duplicator.", 'duplicator'); ?> <br> <?php esc_html_e("Do not modify this setting unless you know the expected result or have talked to support.", 'duplicator'); ?> </p> </td> </tr> <tr> <th scope="row"><label><?php esc_html_e("Foreign CSS", 'duplicator'); ?></label></th> <td> <input type="checkbox" name="unhook_third_party_css" id="unhook_third_party_css" <?php checked($unhook_third_party_css, true); ?> value="1"/> <label for="unhook_third_party_css"><?php esc_html_e("Disable", 'duplicator'); ?></label> <br/> <p class="description"> <?php esc_html_e("Check this option if other plugins/themes CSS files are conflicting with Duplicator.", 'duplicator'); ?> <br> <?php esc_html_e("Do not modify this setting unless you know the expected result or have talked to support.", 'duplicator'); ?> </p> </td> </tr> <tr> <th scope="row"><label><?php esc_html_e("Custom Roles", 'duplicator'); ?></label></th> <td> <input type="checkbox" name="wpfront_integrate" id="wpfront_integrate" <?php echo ($wpfront_integrate) ? 'checked="checked"' : ''; ?> <?php echo $wpfront_ready ? '' : 'disabled'; ?> /> <label for="wpfront_integrate"><?php esc_html_e("Enable User Role Editor Plugin Integration", 'duplicator'); ?></label> <p class="description" style="max-width: 800px"> <?php printf('%s <a href="https://wordpress.org/plugins/wpfront-user-role-editor/" target="_blank">%s</a> %s' .' <a href="https://wpfront.com/user-role-editor-pro/?ref=3" target="_blank">%s</a> %s ' .' <a href="https://wpfront.com/integrations/duplicator-integration/?ref=3" target="_blank">%s</a>. %s' .' <a href="https://snapcreek.com/duplicator/?utm_source=duplicator_free&utm_medium=wordpress_plugin&utm_content=user_role_plugin&utm_campaign=duplicator_pro" target="_blank">%s</a>.', esc_html__('To enable custom roles with Duplicator please install the ', 'duplicator'), esc_html__('User Role Editor Free', 'duplicator'), esc_html__('OR', 'duplicator'), esc_html__('User Role Editor Professional', 'duplicator'), esc_html__('plugins. Please note the User Role Editor Plugin is a separate plugin and does not unlock any Duplicator features. For more information on User Role Editor plugin please see', 'duplicator'), esc_html__('the documentation', 'duplicator'), esc_html__('If you are interested in downloading Duplicator Pro then please use', 'duplicator'), esc_html__('this link', 'duplicator') ); ?> </p> </td> </tr> </table> <p class="submit" style="margin: 20px 0px 0xp 5px;"> <br/> <input type="submit" name="submit" id="submit" class="button-primary" value="<?php esc_attr_e("Save General Settings", 'duplicator') ?>" style="display: inline-block;" /> </p> </form> <!-- ========================================== THICK-BOX DIALOGS: --> <?php $reset_confirm = new DUP_UI_Dialog(); $reset_confirm->title = __('Reset Packages ?', 'duplicator'); $reset_confirm->message = __('This will clear and reset all of the current temporary packages. Would you like to continue?', 'duplicator'); $reset_confirm->progressText = __('Resetting settings, Please Wait...', 'duplicator'); $reset_confirm->jscallback = 'Duplicator.Pack.ResetAll()'; $reset_confirm->progressOn = false; $reset_confirm->okText = __('Yes', 'duplicator'); $reset_confirm->cancelText = __('No', 'duplicator'); $reset_confirm->closeOnConfirm = true; $reset_confirm->initConfirm(); $msg_ajax_error = new DUP_UI_Messages(__('AJAX Call Error!', 'duplicator').'<br>'.__('AJAX error encountered when resetting packages. Please see <a href="https://snapcreek.com/duplicator/docs/faqs-tech/#faq-trouble-053-q" target="_blank">this FAQ entry</a> for possible resolutions.', 'duplicator'), DUP_UI_Messages::ERROR); $msg_ajax_error->hide_on_init = true; $msg_ajax_error->is_dismissible = true; $msg_ajax_error->initMessage(); $msg_response_error = new DUP_UI_Messages(__('RESPONSE ERROR!', 'duplicator'), DUP_UI_Messages::ERROR); $msg_response_error->hide_on_init = true; $msg_response_error->is_dismissible = true; $msg_response_error->initMessage(); $msg_response_success = new DUP_UI_Messages('', DUP_UI_Messages::NOTICE); $msg_response_success->hide_on_init = true; $msg_response_success->is_dismissible = true; $msg_response_success->initMessage(); ?> <script> jQuery(document).ready(function ($) { var msgDebug = <?php echo DUP_Util::isWpDebug() ? 'true' : 'false'; ?>; // which: 0=installer, 1=archive, 2=sql file, 3=log Duplicator.Pack.DownloadTraceLog = function () { var actionLocation = ajaxurl + '?action=DUP_CTRL_Tools_getTraceLog&nonce=' + '<?php echo wp_create_nonce('DUP_CTRL_Tools_getTraceLog'); ?>'; location.href = actionLocation; }; Duplicator.Pack.ConfirmResetAll = function () { <?php $reset_confirm->showConfirm(); ?> }; Duplicator.Pack.ResetAll = function () { $.ajax({ type: "POST", url: ajaxurl, dataType: "json", data: { action: 'duplicator_reset_all_settings', nonce: '<?php echo wp_create_nonce('duplicator_reset_all_settings'); ?>' }, success: function (result) { if (msgDebug) { console.log(result); } if (result.success) { var message = '<?php _e('Packages successfully reset', 'duplicator'); ?>'; if (msgDebug) { console.log(result.data.message); console.log(result.data.html); } <?php $msg_response_success->updateMessage('message'); $msg_response_success->showMessage(); ?> } else { var message = '<?php _e('RESPONSE ERROR!', 'duplicator'); ?>' + '<br><br>' + result.data.message; if (msgDebug) { message += '<br><br>' + result.data.html; } <?php $msg_response_error->updateMessage('message'); $msg_response_error->showMessage(); ?> } }, error: function (result) { if (msgDebug) { console.log(result); } <?php $msg_ajax_error->showMessage(); ?> } }); }; }); </script>PK k4\��m�?B ?B gopro.phpnu �[��� <?php defined('ABSPATH') || defined('DUPXABSPATH') || exit; DUP_Util::hasCapability('export'); require_once(DUPLICATOR_PLUGIN_PATH . '/assets/js/javascript.php'); require_once(DUPLICATOR_PLUGIN_PATH . '/views/inc.header.php'); if(mt_rand(0, 1) == 0) { $test_text = esc_html__('Check It Out!', 'duplicator'); $test_url = "https://snapcreek.com/duplicator/comparison/?utm_source=duplicator_free&utm_medium=wordpress_plugin&utm_content=free_go_pro_checkitout1&utm_campaign=duplicator_pro"; } else { /*Updated from 'Learn More' to 'Check It Out' on 1.4.4 release */ $test_text = esc_html__('Check It Out!', 'duplicator'); $test_url = "https://snapcreek.com/duplicator/comparison/?utm_source=duplicator_free&utm_medium=wordpress_plugin&utm_content=free_go_pro_checkitout2&utm_campaign=duplicator_pro"; } ?> <style> /*================================================ PAGE-SUPPORT:*/ div.dup-pro-area { padding:10px 70px; max-width:750px; width:90%; margin:auto; text-align:center; background:#fff; border-radius:20px; box-shadow:inset 0px 0px 67px 20px rgba(241,241,241,1); } div.dup-pro-area-no-table { padding:10px; max-width:850px; margin:40px auto; text-align:center;} i.dup-gopro-help {color:#777 !important; margin-left:5px; font-size:14px; } td.group-header {background-color:#D5D5D5; color: #000; font-size: 20px; padding:7px !important; font-weight: bold; text-align: left; display:none} div.dup-compare-area {width:400px; float:left; border:1px solid #dfdfdf; border-radius:4px; margin:10px; line-height:18px;box-shadow:0 8px 6px -6px #ccc;} div.feature {background:#fff; padding:15px; margin:2px; text-align:center; min-height:20px} div.feature a {font-size:18px; font-weight:bold;} div.dup-compare-area div.feature div.info {display:none; padding:7px 7px 5px 7px; font-style:italic; color:#555; font-size:14px} div.dup-gopro-header {text-align:center; margin:5px 0 15px 0; font-size:18px; line-height:30px} div.dup-gopro-header b {font-size:35px} #comparison-table { margin-top:25px; border-spacing:0px; width:100%} #comparison-table th { color:#E21906;} #comparison-table td, #comparison-table th { font-size:1.2rem; padding:11px; } #comparison-table .feature-column { text-align:left; width:46%} #comparison-table .check-column { text-align:center; width:27% } #comparison-table tr:nth-child(2n+2) { background-color:#f6f6f6; } </style> <div class="dup-pro-area-no-table"> <img src="<?php echo esc_url(DUPLICATOR_PLUGIN_URL."assets/img/logo-dpro-300x50.png"); ?>" /> <div style="font-size:18px; font-style:italic; color:gray; border-bottom: 1px solid silver; padding-bottom:10px; margin-bottom: -30px"> <?php esc_html_e('The simplicity of Duplicator with power for everyone.', 'duplicator') ?> </div> <div style="margin:60px 0 100px 0"> <div class="txt-call-action-title"> <?php esc_html_e('Take Duplicator to the next level with features you’ll really appreciate!', 'duplicator') ?><br/> <?php esc_html_e("Check out what you're missing with Duplicator Pro...", 'duplicator') ?> </div> <br/><br/> <a href="<?php echo $test_url ?>" class="dup-btn-call-action" target="_blank"><?php echo $test_text ?></a> </div> <table id="comparison-table" style="display:none"> <tr> <th class="feature-column"></th> <th class="check-column"><?php esc_html_e('Free', 'duplicator') ?></th> <th class="check-column"><?php esc_html_e('Professional', 'duplicator') ?></th> </tr> <!-- ===================== CORE FEATURES--> <tr> <td colspan="3" class="group-header"><?php esc_html_e('Core Features', 'duplicator') ?></td> </tr> <tr> <td class="feature-column"><?php esc_html_e('Backup Files & Database', 'duplicator') ?></td> <td class="check-column"><i class="fa fa-check"></i></td> <td class="check-column"><i class="fa fa-check"></i></td> </tr> <tr> <td class="feature-column"><?php esc_html_e('File & Database Table Filters', 'duplicator') ?></td> <td class="check-column"><i class="fa fa-check"></i></td> <td class="check-column"><i class="fa fa-check"></i></td> </tr> <tr> <td class="feature-column"><?php esc_html_e('Migration Wizard', 'duplicator') ?></td> <td class="check-column"><i class="fa fa-check"></i></td> <td class="check-column"><i class="fa fa-check"></i></td> </tr> <tr> <td class="feature-column"><?php esc_html_e('Overwrite Live Site', 'duplicator') ?></td> <td class="check-column"><i class="fa fa-check"></i></td> <td class="check-column"><i class="fa fa-check"></i></td> </tr> <tr> <td class="feature-column"><?php esc_html_e('Drag and Drop Installs', 'duplicator') ?> <sup> <i class="fa fa-question-circle dup-gopro-help" data-tooltip-title="<?php esc_attr_e("Drag and Drop Site Overwrites", 'duplicator'); ?>" data-tooltip="<?php esc_attr_e('Overwrite a live site just by dragging an archive to the destination site. No FTP or database creation required!', 'duplicator'); ?>"/></i> </sup> </td> <td class="check-column"></td> <td class="check-column"><i class="fa fa-check"></i></td> </tr> <tr> <td class="feature-column"><?php esc_html_e('Scheduled Backups', 'duplicator') ?></td> <td class="check-column"></td> <td class="check-column"><i class="fa fa-check"></i></td> </tr> <tr> <td class="feature-column"> <?php esc_html_e('Recovery Points', 'duplicator') ?> <sup> <i class="fa fa-question-circle dup-gopro-help" data-tooltip-title="<?php esc_attr_e("Recovery Points", 'duplicator'); ?>" data-tooltip="<?php esc_attr_e('Recovery Points provide great protection against mistakes and bad updates. Simply mark a package as the "Recovery Point", and if anything goes wrong just browse to the Recovery URL for fast site restoration.', 'duplicator'); ?>"/></i></sup> <td class="check-column"></td> <td class="check-column"><i class="fa fa-check"></i></td> </tr> <!-- ===================== CLOUD STORAGE--> <tr> <td colspan="3" class="group-header"><?php esc_html_e('Cloud Storage', 'duplicator') ?></td> </tr> <tr> <td class="feature-column"> <img src="<?php echo esc_url(DUPLICATOR_PLUGIN_URL."assets/img/amazon-64.png") ?>" style='height:16px; width:16px' /> <?php esc_html_e('Amazon S3 Storage', 'duplicator') ?> </td> <td class="check-column"></td> <td class="check-column"><i class="fa fa-check"></i></td> </tr> <tr> <td class="feature-column"> <img src="<?php echo esc_url(DUPLICATOR_PLUGIN_URL."assets/img/dropbox-64.png"); ?>" style='height:16px; width:16px' /> <?php esc_html_e('Dropbox Storage ', 'duplicator') ?> </td> <td class="check-column"></td> <td class="check-column"><i class="fa fa-check"></i></td> </tr> <tr> <td class="feature-column"> <img src="<?php echo esc_url(DUPLICATOR_PLUGIN_URL."assets/img/google_drive_64px.png"); ?>" style='height:16px; width:16px' /> <?php esc_html_e('Google Drive Storage', 'duplicator') ?> </td> <td class="check-column"></td> <td class="check-column"><i class="fa fa-check"></i></td> </tr> <tr> <td class="feature-column"> <img src="<?php echo DUPLICATOR_PLUGIN_URL ?>assets/img/onedrive-48px.png" style='height:16px; width:16px' /> <?php esc_html_e('Microsoft OneDrive Storage', 'duplicator') ?> </td> <td class="check-column"></td> <td class="check-column"><i class="fa fa-check"></i></td> </tr> <tr> <td class="feature-column"> <img src="<?php echo DUPLICATOR_PLUGIN_URL ?>assets/img/logo_wasbi.png" style='height:16px; width:16px' /> <?php esc_html_e('Wasabi Storage', 'duplicator') ?> </td> <td class="check-column"></td> <td class="check-column"><i class="fa fa-check"></i></td> </tr> <tr> <td class="feature-column"> <img src="<?php echo DUPLICATOR_PLUGIN_URL ?>assets/img/ftp-64.png" style='height:16px; width:16px' /> <?php esc_html_e('Remote FTP/SFTP Storage', 'duplicator') ?> </td> <td class="check-column"></td> <td class="check-column"><i class="fa fa-check"></i></td> </tr> <!-- ===================== ENHANCED OPTIONS --> <tr> <td colspan="3" class="group-header"><?php esc_html_e('Enhanced Options', 'duplicator') ?></td> </tr> <tr> <td class="feature-column"> <img src="<?php echo DUPLICATOR_PLUGIN_URL ?>assets/img/cpanel-48.png" style="width:16px; height:12px" /> <?php esc_html_e('cPanel Database API', 'duplicator') ?> <sup> <i class="fa fa-question-circle dup-gopro-help" data-tooltip-title="<?php esc_attr_e("cPanel", 'duplicator'); ?>" data-tooltip="<?php esc_attr_e('Create the database and database user directly in the installer. No need to browse to your host\'s cPanel application.', 'duplicator'); ?>"/></i> </sup> </td> <td class="check-column"></td> <td class="check-column"><i class="fa fa-check"></i></td> </tr> <tr> <td class="feature-column"> <?php esc_html_e('Large Site Support', 'duplicator') ?> <sup> <i class="fa fa-question-circle dup-gopro-help" data-tooltip-title="<?php esc_attr_e("Large Site Support", 'duplicator'); ?>" data-tooltip="<?php esc_attr_e('Advanced archive engine processes with server background throttling on multi-gig sites - even on stubborn budget hosts!', 'duplicator'); ?>"/></i> </sup> </td> <td class="check-column"></td> <td class="check-column"><i class="fa fa-check"></i></td> </tr> <tr> <td class="feature-column"> <?php esc_html_e('Managed Hosting Support', 'duplicator') ?> <sup> <i class="fa fa-question-circle dup-gopro-help" data-tooltip-title="<?php esc_attr_e("Managed Hosting Support", 'duplicator'); ?>" data-tooltip="<?php esc_attr_e('In addition to the many standard hosts we\'ve always supported, Duplicator Pro now supports WordPress.com, WPEngine, GoDaddy Managed, Liquid Web Managed and more!', 'duplicator'); ?>"/></i> </sup> <td class="check-column"></td> <td class="check-column"><i class="fa fa-check"></i></td> </tr> <tr> <td class="feature-column"> <?php esc_html_e('Streamlined Installer', 'duplicator') ?> <sup> <i class="fa fa-question-circle dup-gopro-help" data-tooltip-title="<?php esc_attr_e("Streamlined Installer", 'duplicator'); ?>" data-tooltip="<?php esc_attr_e('Installer now has two modes: Basic and Advanced. Advanced is like an enhanced Duplicator Lite installer, while Basic is streamlined and only two steps!', 'duplicator'); ?>"/></i> </sup> </td> <td class="check-column"></td> <td class="check-column"><i class="fa fa-check"></i></td> </tr> <tr> <td class="feature-column"><?php esc_html_e('Email Alerts', 'duplicator') ?></td> <td class="check-column"></td> <td class="check-column"><i class="fa fa-check"></i></td> </tr> <tr> <td class="feature-column"><?php esc_html_e('Custom Search & Replace', 'duplicator') ?></td> <td class="check-column"></td> <td class="check-column"><i class="fa fa-check"></i></td> </tr> <tr> <td class="feature-column"> <?php esc_html_e('Manual/Quick Transfer', 'duplicator') ?> <sup> <i class="fa fa-question-circle dup-gopro-help" data-tooltip-title="<?php esc_attr_e("Manual/Quick Transfer", 'duplicator'); ?>" data-tooltip="<?php esc_attr_e('Manually transfer a package from the default localhost storage to another directory or cloud service at anytime.', 'duplicator'); ?>"/></i> </sup> </td> <td class="check-column"></td> <td class="check-column"><i class="fa fa-check"></i></td> </tr> <tr> <td class="feature-column"> <?php esc_html_e('WP-Config Extra Control', 'duplicator') ?> <sup> <i class="fa fa-question-circle dup-gopro-help" data-tooltip-title="<?php esc_attr_e("WP-Config Control Plus", 'duplicator'); ?>" data-tooltip="<?php esc_attr_e('Control many wp-config.php settings right from the installer!', 'duplicator'); ?>"/></i> </sup> </td> <td class="check-column"></td> <td class="check-column"><i class="fa fa-check"></i></td> </tr> <!-- ===================== POWER TOOLS --> <tr> <td colspan="3" class="group-header"> <?php esc_html_e('Power Tools', 'duplicator'); ?> <span style="font-weight:normal; font-size:11px"><?php esc_html_e('Freelancer+', 'duplicator'); ?></span> </td> </tr> <tr> <td class="feature-column"><?php esc_html_e('Hourly Schedules', 'duplicator') ?></td> <td class="check-column"></td> <td class="check-column"><i class="fa fa-check"></i></td> </tr> <tr> <td class="feature-column"> <?php esc_html_e('Installer Branding', 'duplicator') ?> <sup> <i class="fa fa-question-circle dup-gopro-help" data-tooltip-title="<?php esc_attr_e("Installer Branding", 'duplicator'); ?>" data-tooltip="<?php esc_attr_e('Give the installer a custom header with your brand and logo.', 'duplicator'); ?>"/></i> </sup> </td> <td class="check-column"></td> <td class="check-column"><i class="fa fa-check"></i></td> </tr> <tr> <td class="feature-column"> <?php esc_html_e('Migrate Duplicator Settings', 'duplicator') ?> <sup> <i class="fa fa-question-circle dup-gopro-help" data-tooltip-title="<?php esc_attr_e("Migrate Duplicator Settings", 'duplicator'); ?>" data-tooltip="<?php esc_attr_e('Exports all schedules, storage locations, templates and settings from this Duplicator Pro instance into a downloadable export file.', 'duplicator'); ?>"/></i> </sup> </td> <td class="check-column"></td> <td class="check-column"><i class="fa fa-check"></i></td> </tr> <tr> <td class="feature-column"> <?php esc_html_e('Regenerate Salts', 'duplicator') ?> <sup> <i class="fa fa-question-circle dup-gopro-help" data-tooltip-title="<?php esc_attr_e("Regenerate Salts", 'duplicator'); ?>" data-tooltip="<?php esc_attr_e('Installer contains option to regenerate salts in the wp-config.php file. This feature is only available with Freelancer, Business or Gold licenses.', 'duplicator'); ?>"/></i> </sup> </td> <td class="check-column"></td> <td class="check-column"><i class="fa fa-check"></i></td> </tr> <tr> <td class="feature-column"> <?php esc_html_e('Priority Customer Support', 'duplicator') ?> <sup><i class="fa fa-question-circle dup-gopro-help" data-tooltip-title="<?php esc_attr_e("Support", 'duplicator'); ?>" data-tooltip="<?php esc_attr_e('Pro users get top priority for any requests to our support desk. In most cases responses will be answered in under 24 hours.', 'duplicator'); ?>"/></i> </sup> </td> <td class="check-column"></td> <td class="check-column"><i class="fa fa-check"></i></td> </tr> <!-- ===================== MULTI-SITE --> <tr> <td colspan="3" class="group-header"> <?php esc_html_e('MultiSite', 'duplicator'); ?> </td> </tr> <tr> <td class="feature-column"><?php esc_html_e('Multisite Network Migration', 'duplicator') ?></td> <td class="check-column"></td> <td class="check-column"><i class="fa fa-check"></i></td> </tr> <tr> <td class="feature-column"><?php esc_html_e('Multisite Subsite > Standalone', 'duplicator') ?><sup> <i class="fa fa-question-circle dup-gopro-help" data-tooltip-title="<?php esc_attr_e("Multisite", 'duplicator'); ?>" data-tooltip="<?php esc_attr_e('Install an individual subsite from a Multisite as a standalone site. This feature is only available with Business or Gold licenses.', 'duplicator'); ?>"/></i></sup> </td> <td class="check-column"></td> <td class="check-column"><i class="fa fa-check"></i></td> </tr> <tr> <td class="feature-column"><?php esc_html_e('Plus Many Other Features...', 'duplicator') ?></td> <td class="check-column"></td> <td class="check-column"><i class="fa fa-check"></i></td> </tr> </table> </div> PK k4\��9�C C license.phpnu �[��� <?php defined('ABSPATH') || defined('DUPXABSPATH') || exit; ?> <h3 class="title"><?php esc_html_e("Activation"); ?> </h3> <hr size="1" /> <table class="form-table"> <tr valign="top"> <th scope="row"><?php esc_html_e("Manage") ?></th> <td><?php echo sprintf(esc_html__('%1$sManage Licenses%2$s'), '<a target="_blank" href="https://snapcreek.com/dashboard?utm_source=duplicator_free&utm_medium=wordpress_plugin&utm_campaign=duplicator_pro&utm_content=settings_license_manage_licenses">', '</a>'); ?></td> </tr> <tr valign="top"> <th scope="row"><?php esc_html_e("Type") ?></th> <td class="dpro-license-type"> <?php esc_html_e('Duplicator Free'); ?> <div style="padding: 10px"> <i class="far fa-check-square"></i> <?php esc_html_e('Basic Features'); ?> <br/> <i class="far fa-square"></i> <a target="_blank" href="https://snapcreek.com/duplicator/comparison/?utm_source=duplicator_free&utm_medium=wordpress_plugin&utm_content=pro_features&utm_campaign=duplicator_pro"><?php esc_html_e('Pro Features'); ?></a><br> </div> </td> </tr> <tr valign="top"> <th scope="row"><label><?php esc_html_e("License Key"); ?></label></th> <td> <div class="description" style="max-width:700px"> <b><?php esc_html_e("Duplicator Lite:", 'duplicator'); ?></b> <ul style="list-style-type:circle; margin-left:40px"> <li> <?php esc_html_e("The free version of Duplicator does not require a license key.", 'duplicator'); ?> </li> <li> <?php esc_html_e("If you would like to purchase the professional version you can ", 'duplicator'); echo '<a href="https://snapcreek.com/duplicator?utm_source=duplicator_free&utm_medium=wordpress_plugin&utm_campaign=duplicator_pro&utm_content=settings_license_get_copy_here_lite" target="_blank">' . esc_html__("get a copy here", 'duplicator') . '</a>!'; ?> </li> </ul> <b><?php esc_html_e("Duplicator Pro:", 'duplicator'); ?></b> <ul style="list-style-type:circle; margin-left: 40px"> <li> <?php esc_html_e("The professional version is a separate plugin that you download and install. ", 'duplicator'); ?> </li> <li> <?php esc_html_e("Download professional from the email sent after purchase or login to snapcreek.com", 'duplicator'); ?> </li> </ul> </div> </td> </tr> </table> PK k4\[K�g� � schedule.phpnu �[��� <?php defined('ABSPATH') || defined('DUPXABSPATH') || exit; ?> <style> div.panel {padding: 20px 5px 10px 10px; text-align: center; } </style> <div class="panel"> <img src="<?php echo DUPLICATOR_PLUGIN_URL ?>assets/img/logo-dpro-300x50.png" /> <div class="txt-call-action-title"> <i class="far fa-clock fa-sm"></i> <?php echo esc_html__('Schedules are available in Duplicator Pro.', 'duplicator'); ?> </div> <div class="txt-call-action-sub"> <?php esc_html_e('Create robust schedules that automatically create packages while you sleep.', 'duplicator'); echo '<br/>'; esc_html_e('Simply choose your storage location and when you want it to run.', 'duplicator'); ?> </div> <a class="dup-btn-call-action" href="https://snapcreek.com/duplicator/?utm_source=duplicator_free&utm_medium=wordpress_plugin&utm_content=free_settings_schedule_checkitout&utm_campaign=duplicator_pro" target="_blank"> <?php esc_html_e('Check It Out!', 'duplicator') ?> </a> </div>PK k4\:�r��"