<?php
use Duplicator\Core\Views\TplMng;
use Duplicator\Utils\Upsell;
defined('ABSPATH') || defined('DUPXABSPATH') || exit;
?>
<style>
/* -----------------------------
PACKAGE OPTS*/
form#dup-form-opts label {line-height:22px}
form#dup-form-opts input[type=checkbox] {margin-top:3px}
form#dup-form-opts textarea, input[type="text"] {width:100%}
textarea#package-notes {height:75px;}
div.dup-notes-add {float:right; margin:-4px 2px 4px 0;}
div#dup-notes-area {display:none}
input#package-name {padding:4px; height: 2em; font-size: 1.2em; line-height: 100%; width: 100%; margin: 0 0 3px;}
tr.dup-store-path td {padding:14px}
label.lbl-larger {font-size:1.2em}
div.tab-hdr-title {font-size: 16px; font-weight: bold; padding: 1px; margin:2px 0 5px 0; border-bottom:1px solid #dcdcde }
/*EXPANDER TITLE BOXES */
div.dup-box-title div.dup-title-txt {float:left}
div.dup-box-title
div.dup-title-icons { margin-top:-5px; font-weight:normal; font-size:13px; float:left}
div.dup-box-title div.dup-title-icons > span {border-left:1px solid silver; padding:2px 14px 5px 14px; user-select:none}
span#dup-installer-secure-lock, span#dup-installer-secure-unlock {border:none; padding:0 12px 5px 2px;}
span#dup-installer-secure-lock {border:none; padding:0 12px 5px 2px;}
/*TAB-1: ARCHIVE SECTION*/
form#dup-form-opts div.tabs-panel{max-height:800px; padding:15px 20px 20px 20px; min-height:280px}
/* TAB-2: DATABASE */
table#dup-dbtables td {padding:0 20px 5px 10px;}
label.core-table,
label.non-core-table {padding:2px 0 2px 0; font-size:14px; display: inline-block}
label.core-table {color:#9A1E26;font-style:italic;font-weight:bold}
i.core-table-info {color:#9A1E26;font-style:italic;}
label.non-core-table {color:#000}
label.non-core-table:hover, label.core-table:hover {text-decoration:line-through}
table.dbmysql-compatibility {margin-top:-10px}
table.dbmysql-compatibility td{padding:0 20px 0 2px}
div.dup-store-pro {font-size:12px; font-style:italic;}
div.dup-store-pro img {height:14px; width:14px; vertical-align:text-top}
div.dup-store-pro a {text-decoration:underline}
span.dup-pro-text {font-style:italic; font-size:12px; color:#555; font-style:italic }
div#dup-exportdb-items-checked, div#dup-exportdb-items-off {min-height:275px; display:none}
div#dup-exportdb-items-checked {padding: 5px; max-width:700px}
div.dup-tbl-scroll {white-space:nowrap; height:350px; overflow-y: scroll; border:1px solid silver; padding:5px 10px; border-radius: 2px;
background:#fafafa; margin:3px 0 0 0; width:98%}
/*INSTALLER SECTION*/
div.dup-installer-header-1 {font-weight:bold; padding-bottom:2px; width:100%}
div.dup-install-hdr-2 {font-weight:bold; border-bottom:1px solid #dfdfdf; padding-bottom:2px; width:100%}
span#dup-installer-secure-lock {color:#A62426; display:none; font-size:14px}
span#dup-installer-secure-unlock {display:none; font-size:14px}
span#dup-installer-secure-lock {display:none; font-size:14px}
label.chk-labels {display:inline-block; margin-top:1px}
table.dup-install-setup {width:100%; margin-left:2px}
table.dup-install-setup tr{vertical-align: top}
div.dup-installer-panel-optional {text-align: center; font-style: italic; font-size: 12px; color:maroon}
label.secure-pass-lbl {display:inline-block; width:125px}
div#dup-pass-toggle {position: relative; margin:8px 0 0 0; width:243px}
input#secure-pass {border-radius:4px 0 0 4px; width:214px; height:30px; min-height: auto; margin:0; padding: 0 4px;}
button#secure-btn {height:30px; width:30px; position:absolute; top:0px; right:0px; border:1px solid silver; border-radius:0 4px 4px 0; cursor:pointer;}
div.dup-install-prefill-tab-pnl.tabs-panel {overflow:visible;}
/*TABS*/
ul.add-menu-item-tabs li, ul.category-tabs li {padding:3px 30px 5px}
div.dup-install-prefill-tab-pnl {min-height:180px !important; }
</style>
<?php
$action_url = admin_url("admin.php?page=duplicator&tab=new2&retry={$retry_state}");
$action_nonce_url = wp_nonce_url($action_url, 'new2-package');
$storage_position = DUP_Settings::Get('storage_position');
?>
<form id="dup-form-opts" method="post" action="<?php echo $action_nonce_url; ?>" data-parsley-validate="" autocomplete="oldpassword">
<input type="hidden" id="dup-form-opts-action" name="action" value="">
<?php wp_nonce_field('dup_form_opts', 'dup_form_opts_nonce_field', false); ?>
<div>
<label for="package-name" class="lbl-larger"><b> <?php esc_html_e('Name', 'duplicator') ?>:</b> </label>
<div class="dup-notes-add">
<a href="javascript:void(0)" onclick="jQuery('#dup-notes-area').toggle()">
[<?php esc_html_e('Add Notes', 'duplicator') ?>]
</a>
</div>
<a href="javascript:void(0)" onclick="Duplicator.Pack.ResetName()" title="<?php esc_attr_e('Toggle a default name', 'duplicator') ?>"><i class="fa fa-undo"></i></a> <br/>
<input id="package-name" name="package-name" type="text" value="<?php echo esc_html($Package->Name); ?>" maxlength="40" data-required="true" data-regexp="^[0-9A-Za-z|_]+$" /> <br/>
<div id="dup-notes-area">
<label class="lbl-larger"><b> <?php esc_html_e('Notes', 'duplicator') ?>:</b></label> <br/>
<textarea id="package-notes" name="package-notes" maxlength="300" /><?php echo esc_html($Package->Notes); ?></textarea>
</div>
</div>
<br/>
<!-- ===================
STORAGE -->
<div class="dup-box">
<div class="dup-box-title">
<i class="fas fa-server fa-fw fa-sm"></i>
<?php esc_html_e("Storage", 'duplicator'); ?>
<div class="dup-box-arrow"></div>
</div>
<div class="dup-box-panel" id="dup-pack-storage-panel" style="<?php echo esc_html($ui_css_storage); ?>">
<div style="padding:0 5px 3px 0">
<span class="dup-guide-txt-color">
<?php esc_html_e("This is the storage location on this server where the archive and installer files will be saved.", 'duplicator'); ?>
</span>
<div style="float:right">
<a href="admin.php?page=duplicator-settings&tab=storage"><?php esc_html_e("[Storage Options]", 'duplicator'); ?> </a>
</div>
</div>
<table class="widefat package-tbl" style="margin-bottom:15px" >
<thead>
<tr>
<th style='width:30px'></th>
<th style='width:200px'><?php esc_html_e("Name", 'duplicator'); ?></th>
<th style='width:100px'><?php esc_html_e("Type", 'duplicator'); ?></th>
<th style="white-space:nowrap"><?php esc_html_e("Location", 'duplicator'); ?></th>
</tr>
</thead>
<tbody>
<tr class="dup-store-path">
<td>
<input type="checkbox" checked="checked" disabled="disabled" style="margin-top:-2px"/>
</td>
<td>
<?php esc_html_e('Default', 'duplicator');?>
<i>
<?php
if ($storage_position === DUP_Settings::STORAGE_POSITION_LEGACY) {
esc_html_e("(Legacy Path)", 'duplicator');
} else {
esc_html_e("(Contents Path)", 'duplicator');
}
?>
</i>
</td>
<td>
<i class="far fa-hdd fa-fw"></i>
<?php esc_html_e("Local", 'duplicator'); ?>
</td>
<td><?php echo DUP_Settings::getSsdirPath(); ?></td>
</tr>
<tr>
<td colspan="4" class="dup-store-promo-area">
<div class="dup-store-pro">
<span class="dup-pro-text">
<?php echo sprintf(
__('Back up this site to %1$s, %2$s, %3$s, %4$s, %5$s and other locations with ', 'duplicator'),
'<i class="fab fa-aws fa-fw"></i> ' . 'Amazon',
'<i class="fab fa-dropbox fa-fw"></i> ' . 'Dropbox',
'<i class="fab fa-google-drive fa-fw"></i> ' . 'Google Drive',
'<i class="fas fa-cloud fa-fw"></i> ' . 'OneDrive',
'<i class="fas fa-network-wired fa-fw"></i> ' . 'FTP/SFTP'
);
?>
<a href="<?php echo esc_url(Upsell::getCampaignUrl('package-build-setup', 'Additional Storages')); ?>" target="_blank">
<?php esc_html_e('Duplicator Pro', 'duplicator');?>
</a>
<i class="fas fa-question-circle"
data-tooltip-title="<?php esc_attr_e("Additional Storage:", 'duplicator'); ?>"
data-tooltip="<?php esc_attr_e('Duplicator Pro allows you to create a package and store it at a custom location on this server or to a remote '
. 'cloud location such as Google Drive, Amazon, Dropbox and many more.', 'duplicator'); ?>">
</i>
</span>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div><br/>
<!-- ============================
ARCHIVE -->
<div class="dup-box">
<div class="dup-box-title">
<div class="dup-title-txt">
<i class="far fa-file-archive"></i>
<?php
_e('Archive', 'duplicator');
echo " <sup class='archive-ext'>{$archive_build_mode}</sup>";
?>
</div>
<div class="dup-title-icons" >
<span id="dup-archive-filter-file" title="<?php esc_attr_e('File filter enabled', 'duplicator') ?>">
<i class="far fa-copy fa-fw"></i>
<sup><i class="fa fa-filter fa-sm"></i></sup>
</span>
<span id="dup-archive-filter-db" title="<?php esc_attr_e('Database filter enabled', 'duplicator') ?>">
<i class="fa fa-table fa-fw"></i>
<sup><i class="fa fa-filter fa-sm"></i></sup>
</span>
<span id="dup-archive-db-only" title="<?php esc_attr_e('Archive Only the Database', 'duplicator') ?>">
<i class="fas fa-database fa-fw"></i> <?php esc_html_e('Database Only', 'duplicator') ?>
<sup> </sup>
</span>
</div>
<div class="dup-box-arrow"></div>
</div>
<div class="dup-box-panel" id="dup-pack-archive-panel" style="<?php echo esc_html($ui_css_archive); ?>">
<input type="hidden" name="archive-format" value="ZIP" />
<!-- NESTED TABS -->
<div data-dup-tabs='true'>
<ul>
<li><?php esc_html_e('Files', 'duplicator') ?></li>
<li><?php esc_html_e('Database', 'duplicator') ?></li>
<li><?php esc_html_e('File Archive Encryption', 'duplicator') ?></li>
</ul>
<!-- TAB1:PACKAGE -->
<?php TplMng::getInstance()->render('admin_pages/packages/setup/archive-filter-files-tab', array (
'package' => $Package
)); ?>
<!-- TAB2: DATABASE -->
<div>
<div class="tab-hdr-title">
<?php esc_html_e('Filters', 'duplicator') ?>
</div>
<table>
<tr>
<td><input type="checkbox" id="dbfilter-on" name="dbfilter-on" onclick="Duplicator.Pack.ToggleDBFilters()" <?php echo ($Package->Database->FilterOn) ? "checked='checked'" : ""; ?> /></td>
<td>
<label for="dbfilter-on"><?php esc_html_e("Enable Table Filters", 'duplicator') ?> </label>
<i class="fas fa-question-circle fa-sm"
data-tooltip-title="<?php esc_attr_e("Enable Table Filters:", 'duplicator'); ?>"
data-tooltip="<?php esc_attr_e('Checked tables will not be added to the database script. Excluding certain tables can possibly cause your site or plugins to not work correctly after install!', 'duplicator'); ?>">
</i>
</td>
</tr>
</table>
<div id="dup-db-filter-items">
<div style="float:right; padding-right:10px;">
<a href="javascript:void(0)" id="dball" onclick="jQuery('#dup-dbtables .checkbox').prop('checked', true).trigger('click');"><?php esc_html_e('Include All', 'duplicator'); ?></a>
<a href="javascript:void(0)" id="dbnone" onclick="jQuery('#dup-dbtables .checkbox').prop('checked', false).trigger('click');"><?php esc_html_e('Exclude All', 'duplicator'); ?></a>
</div>
<div class="dup-tbl-scroll">
<?php
$tables = $wpdb->get_results("SHOW FULL TABLES FROM `" . DB_NAME . "` WHERE Table_Type = 'BASE TABLE' ", ARRAY_N);
$num_rows = count($tables);
$next_row = round($num_rows / 4, 0);
$counter = 0;
$tableList = explode(',', $Package->Database->FilterTables);
echo '<table id="dup-dbtables"><tr><td valign="top">';
foreach ($tables as $table) {
if (DUP_Util::isTableExists($table[0])) {
if (DUP_Util::isWPCoreTable($table[0])) {
$core_css = 'core-table';
$core_note = '*';
} else {
$core_css = 'non-core-table';
$core_note = '';
}
if (in_array($table[0], $tableList)) {
$checked = 'checked="checked"';
$css = 'text-decoration:line-through';
} else {
$checked = '';
$css = '';
}
echo "<label for='dbtables-{$table[0]}' style='{$css}' class='{$core_css}'>"
. "<input class='checkbox dbtable' $checked type='checkbox' name='dbtables[]' id='dbtables-{$table[0]}' value='{$table[0]}' onclick='Duplicator.Pack.ExcludeTable(this)' />"
. " {$table[0]}{$core_note}</label><br />";
$counter++;
if ($next_row <= $counter) {
echo '</td><td valign="top">';
$counter = 0;
}
}
}
echo '</td></tr></table>';
?>
</div>
</div>
<div class="dup-tabs-opts-help">
<?php
_e("Checked tables will be <u>excluded</u> from the database script. ", 'duplicator');
_e("Excluding certain tables can cause your site or plugins to not work correctly after install!<br/>", 'duplicator');
_e("<i class='core-table-info'> Use caution when excluding tables! It is highly recommended to not exclude WordPress core tables*, unless you know the impact.</i>", 'duplicator');
?>
</div>
<br/>
<div class="tab-hdr-title">
<?php esc_html_e('Configuration', 'duplicator') ?>
</div>
<div class="db-configuration" style="line-height: 30px">
<?php esc_html_e("SQL Mode", 'duplicator') ?>:
<a href="?page=duplicator-settings&tab=package" target="settings"><?php echo esc_html($dbbuild_mode); ?></a>
<br/>
<?php esc_html_e("Compatibility Mode", 'duplicator') ?>:
<i class="fas fa-question-circle fa-sm"
data-tooltip-title="<?php esc_attr_e("Compatibility Mode:", 'duplicator'); ?>"
data-tooltip="<?php esc_attr_e('This is an advanced database backwards compatibility feature that should ONLY be used if having problems installing packages.'
. ' If the database server version is lower than the version where the package was built then these options may help generate a script that is more compliant'
. ' with the older database server. It is recommended to try each option separately starting with mysql40.', 'duplicator'); ?>">
</i>
<small style="font-style:italic">
<a href="https://dev.mysql.com/doc/refman/5.7/en/mysqldump.html#option_mysqldump_compatible" target="_blank">[<?php esc_html_e('details', 'duplicator'); ?>]</a>
</small>
<?php if ($dbbuild_mode == 'mysqldump') :?>
<?php
$modes = explode(',', $Package->Database->Compatible);
$is_mysql40 = in_array('mysql40', $modes);
$is_no_table = in_array('no_table_options', $modes);
$is_no_key = in_array('no_key_options', $modes);
$is_no_field = in_array('no_field_options', $modes);
?>
<table class="dbmysql-compatibility">
<tr>
<td>
<input type="checkbox" name="dbcompat[]" id="dbcompat-mysql40" value="mysql40" <?php echo $is_mysql40 ? 'checked="true"' : ''; ?> >
<label for="dbcompat-mysql40"><?php esc_html_e("mysql40", 'duplicator') ?></label>
</td>
<td>
<input type="checkbox" name="dbcompat[]" id="dbcompat-no_table_options" value="no_table_options" <?php echo $is_no_table ? 'checked="true"' : ''; ?>>
<label for="dbcompat-no_table_options"><?php esc_html_e("no_table_options", 'duplicator') ?></label>
</td>
<td>
<input type="checkbox" name="dbcompat[]" id="dbcompat-no_key_options" value="no_key_options" <?php echo $is_no_key ? 'checked="true"' : ''; ?>>
<label for="dbcompat-no_key_options"><?php esc_html_e("no_key_options", 'duplicator') ?></label>
</td>
<td>
<input type="checkbox" name="dbcompat[]" id="dbcompat-no_field_options" value="no_field_options" <?php echo $is_no_field ? 'checked="true"' : ''; ?>>
<label for="dbcompat-no_field_options"><?php esc_html_e("no_field_options", 'duplicator') ?></label>
</td>
</tr>
</table>
<?php else :?>
<i><?php esc_html_e("This option is only available with mysqldump mode.", 'duplicator'); ?></i>
<?php endif; ?>
</div>
</div>
<!-- TAB3: SECURITY -->
<div>
<p>
<?php _e('Protect and secure the archive file with industry-standard AES-256 encryption.', 'duplicator'); ?>
</p>
<a href="<?php echo esc_url(Upsell::getCampaignUrl('package_build-securit_tab', 'Upgrade To Pro')); ?>"
class="dup-btn dup-btn-md dup-btn-green"
target="_blank">
<?php _e('Upgrade To Pro', 'duplicator'); ?>
</a>
</div>
</div>
</div>
</div><br/>
<!-- ============================
INSTALLER -->
<div class="dup-box">
<div class="dup-box-title">
<div class="dup-title-txt">
<i class="fa fa-bolt fa-sm"></i> <?php esc_html_e('Installer', 'duplicator') ?>
</div>
<div class="dup-title-icons">
<span id="dup-installer-secure-lock" title="<?php esc_attr_e('Installer password protection is on', 'duplicator') ?>">
<i class="fas fa-lock fa-sm"></i>
</span>
<span id="dup-installer-secure-unlock" title="<?php esc_attr_e('Installer password protection is off', 'duplicator') ?>">
<i class="fas fa-unlock fa-sm"></i>
</span>
</div>
<div class="dup-box-arrow"></div>
</div>
<div class="dup-box-panel" id="dup-pack-installer-panel" style="<?php echo esc_html($ui_css_installer); ?>">
<div class="dup-installer-panel-optional">
<span class="dup-guide-txt-color">
<?php esc_html_e("The installer file is used to redeploy/install the archive contents.", 'duplicator'); ?>
</span><br/>
<b><?php esc_html_e('All values in this section are', 'duplicator'); ?> <u><?php esc_html_e('optional', 'duplicator'); ?></u></b>
<i class="fas fa-question-circle fa-sm"
data-tooltip-title="<?php esc_attr_e("Setup/Prefills", 'duplicator'); ?>"
data-tooltip="<?php esc_attr_e('All values in this section are OPTIONAL! If you know ahead of time the database input fields the installer will use, then you can '
. 'optionally enter them here and they will be prefilled at install time. Otherwise you can just enter them in at install time and ignore all these '
. 'options in the Installer section.', 'duplicator'); ?>">
</i>
</div>
<table class="dup-install-setup" style="margin-top: -10px">
<tr>
<td colspan="2"><div class="dup-install-hdr-2"><?php esc_html_e("Setup", 'duplicator') ?></div></td>
</tr>
<tr>
<td style="width:130px;"><b><?php esc_html_e("Branding", 'duplicator') ?></b></td>
<td>
<a href="<?php echo esc_url(Upsell::getCampaignUrl('package-build-setup', 'Installer Branding')); ?>" target="_blank">
<span class="dup-pro-text"><?php esc_html_e('Available with Duplicator Pro!', 'duplicator'); ?></span></a>
<i class="fas fa-question-circle fa-sm"
data-tooltip-title="<?php esc_attr_e("Branding", 'duplicator'); ?>:"
data-tooltip="<?php esc_attr_e('Branding is a way to customize the installer look and feel. With branding you can create multiple brands of installers.', 'duplicator'); ?>"></i>
<br/><br/>
</td>
</tr>
<tr>
<td style="width:130px"><b><?php esc_html_e("Security", 'duplicator') ?></b></td>
<td>
<?php
$dup_install_secure_on = isset($Package->Installer->OptsSecureOn) ? $Package->Installer->OptsSecureOn : 0;
$dup_install_secure_pass = isset($Package->Installer->OptsSecurePass) ? DUP_Util::installerUnscramble($Package->Installer->OptsSecurePass) : '';
?>
<input type="checkbox" name="secure-on" id="secure-on" onclick="Duplicator.Pack.EnableInstallerPassword()" <?php echo ($dup_install_secure_on) ? 'checked' : ''; ?> />
<label for="secure-on"><?php esc_html_e("Enable Password Protection", 'duplicator') ?></label>
<i class="fas fa-question-circle fa-sm"
data-tooltip-title="<?php esc_attr_e("Security:", 'duplicator'); ?>"
data-tooltip="<?php esc_attr_e('Enabling this option will allow for basic password protection on the installer. Before running the installer the '
. 'password below must be entered before proceeding with an install. This password is a general deterrent and should not be substituted for properly '
. 'keeping your files secure. Be sure to remove all installer files when the install process is completed.', 'duplicator'); ?>"></i>
<div id="dup-pass-toggle">
<input type="password" name="secure-pass" id="secure-pass" required="required" value="<?php echo esc_attr($dup_install_secure_pass); ?>" />
<button type="button" id="secure-btn" class="pass-toggle" onclick="Duplicator.Pack.ToggleInstallerPassword()" title="<?php esc_attr_e('Show/Hide Password', 'duplicator'); ?>"><i class="fas fa-eye fa-xs"></i></button>
</div>
<br/>
</td>
</tr>
</table>
<table style="width:100%">
<tr>
<td colspan="2"><div class="dup-install-hdr-2"><?php esc_html_e("Prefills", 'duplicator') ?></div></td>
</tr>
</table>
<!-- ===================
BASIC/CPANEL TABS -->
<div data-dup-tabs="true">
<ul>
<li><?php esc_html_e('Basic', 'duplicator') ?></li>
<li id="dpro-cpnl-tab-lbl"><?php esc_html_e('cPanel', 'duplicator') ?></li>
</ul>
<!-- ===================
TAB1: Basic -->
<div class="dup-install-prefill-tab-pnl">
<table class="dup-install-setup">
<tr>
<td colspan="2"><div class="dup-install-hdr-2"><?php esc_html_e(" MySQL Server", 'duplicator') ?></div></td>
</tr>
<tr>
<td style="width:130px"><?php esc_html_e("Host", 'duplicator') ?></td>
<td>
<input
type="text"
name="dbhost"
id="dbhost"
value="<?php echo esc_attr($Package->Installer->OptsDBHost); ?>"
maxlength="200"
placeholder="<?php esc_attr_e('example: localhost (value is optional)', 'duplicator'); ?>"
>
</td>
</tr>
<tr>
<td><?php esc_html_e("Host Port", 'duplicator') ?></td>
<td>
<input
type="text"
name="dbport"
id="dbport"
value="<?php echo esc_attr($Package->Installer->OptsDBPort); ?>"
maxlength="200"
placeholder="<?php esc_attr_e('example: 3306 (value is optional)', 'duplicator'); ?>"
>
</td>
</tr>
<tr>
<td><?php esc_html_e("Database", 'duplicator') ?></td>
<td>
<input
type="text"
name="dbname"
id="dbname"
value="<?php echo esc_attr($Package->Installer->OptsDBName); ?>"
maxlength="100"
placeholder="<?php esc_attr_e('example: DatabaseName (value is optional)', 'duplicator'); ?>"
>
</td>
</tr>
<tr>
<td><?php esc_html_e("User", 'duplicator') ?></td>
<td>
<input
type="text"
name="dbuser"
id="dbuser"
value="<?php echo esc_attr($Package->Installer->OptsDBUser); ?>"
maxlength="100"
placeholder="<?php esc_attr_e('example: DatabaseUserName (value is optional)', 'duplicator'); ?>"
>
</td>
</tr>
<tr>
<td><?php esc_html_e("Charset", 'duplicator') ?></td>
<td>
<input
type="text"
name="dbcharset"
id="dbcharset"
value="<?php echo esc_attr($Package->Installer->OptsDBCharset); ?>"
maxlength="100"
placeholder="<?php esc_attr_e('example: utf8 (value is optional)', 'duplicator'); ?>"
>
</td>
</tr>
<tr>
<td><?php esc_html_e("Collation", 'duplicator') ?></td>
<td>
<input
type="text"
name="dbcollation"
id="dbcollation"
value="<?php echo esc_attr($Package->Installer->OptsDBCollation); ?>"
maxlength="100"
placeholder="<?php esc_attr_e('example: utf8_general_ci (value is optional)', 'duplicator'); ?>"
>
</td>
</tr>
</table><br />
</div>
<!-- ===================
TAB2: cPanel -->
<div class="dup-install-prefill-tab-pnl">
<div style="padding:10px 0 0 12px;">
<img src="<?php echo esc_url(DUPLICATOR_PLUGIN_URL . "assets/img/cpanel-48.png"); ?>" style="width:16px; height:12px" />
<?php esc_html_e("Create the database and database user at install time without leaving the installer!", 'duplicator'); ?><br/>
<?php esc_html_e("This feature is only availble in ", 'duplicator'); ?>
<a href="<?php echo esc_url(Upsell::getCampaignUrl('package-build-setup', 'cPanel')); ?>" target="_blank">
<?php esc_html_e('Duplicator Pro!', 'duplicator');?>
</a><br/>
<small><i><?php esc_html_e("This feature works only with hosts that support cPanel.", 'duplicator'); ?></i></small>
</div>
</div>
</div>
</div>
</div><br/>
<div class="dup-button-footer">
<input type="button" value="<?php esc_attr_e("Reset", 'duplicator') ?>" class="button button-large" <?php echo ($dup_tests['Success']) ? '' : 'disabled="disabled"'; ?> onclick="Duplicator.Pack.ConfirmReset();" />
<input type="submit" value="<?php esc_html_e("Next", 'duplicator') ?> ▶" class="button button-primary button-large" <?php echo ($dup_tests['Success']) ? '' : 'disabled="disabled"'; ?> />
</div>
</form>
<!-- ==========================================
THICK-BOX DIALOGS: -->
<?php
$confirm1 = new DUP_UI_Dialog();
$confirm1->title = __('Reset Package Settings?', 'duplicator');
$confirm1->message = __('This will clear and reset all of the current package settings. Would you like to continue?', 'duplicator');
$confirm1->jscallback = 'Duplicator.Pack.ResetSettings()';
$confirm1->initConfirm();
$default_name1 = DUP_Package::getDefaultName();
$default_name2 = DUP_Package::getDefaultName(false);
?>
<script>
jQuery(document).ready(function ($)
{
var DUP_NAMEDEFAULT1 = '<?php echo esc_js($default_name1); ?>';
var DUP_NAMEDEFAULT2 = '<?php echo esc_js($default_name2); ?>';
var DUP_NAMELAST = $('#package-name').val();
/* Appends a path to the directory filter */
Duplicator.Pack.ToggleDBFilters = function ()
{
var $filterItems = $('#dup-db-filter-items');
if ($("#dbfilter-on").is(':checked')) {
$filterItems.removeAttr('disabled').css({color:'#000'});
$('#dup-dbtables input').removeAttr('readonly').css({color:'#000'});
$('#dup-archive-filter-db').show();
$('div.dup-tbl-scroll label').css({color:'#000'});
} else {
$filterItems.attr('disabled', 'disabled').css({color:'#999'});
$('#dup-dbtables input').attr('readonly', 'readonly').css({color:'#999'});
$('div.dup-tbl-scroll label').css({color:'#999'});
$('#dup-archive-filter-db').hide();
}
};
Duplicator.Pack.ConfirmReset = function ()
{
<?php $confirm1->showConfirm(); ?>
}
Duplicator.Pack.ResetSettings = function ()
{
var key = 'duplicator_package_active';
jQuery('#dup-form-opts-action').val(key);
jQuery('#dup-form-opts').attr('action', '');
jQuery('#dup-form-opts').submit();
}
Duplicator.Pack.ResetName = function ()
{
var current = $('#package-name').val();
switch (current) {
case DUP_NAMEDEFAULT1 : $('#package-name').val(DUP_NAMELAST); break;
case DUP_NAMEDEFAULT2 : $('#package-name').val(DUP_NAMEDEFAULT1); break;
case DUP_NAMELAST : $('#package-name').val(DUP_NAMEDEFAULT2); break;
default: $('#package-name').val(DUP_NAMELAST);
}
}
Duplicator.Pack.ExcludeTable = function (check)
{
var $cb = $(check);
if ($cb.is(":checked")) {
$cb.closest("label").css('textDecoration', 'line-through');
} else {
$cb.closest("label").css('textDecoration', 'none');
}
}
Duplicator.Pack.EnableInstallerPassword = function ()
{
var $button = $('#secure-btn');
if ($('#secure-on').is(':checked')) {
$('#secure-pass').attr('readonly', false);
$('#secure-pass').attr('required', 'true').focus();
$('#dup-installer-secure-lock').show();
$('#dup-installer-secure-unlock').hide();
$button.removeAttr('disabled');
} else {
$('#secure-pass').removeAttr('required');
$('#secure-pass').attr('readonly', true);
$('#dup-installer-secure-lock').hide();
$('#dup-installer-secure-unlock').show();
$button.attr('disabled', 'true');
}
};
Duplicator.Pack.ToggleInstallerPassword = function()
{
var $input = $('#secure-pass');
var $button = $('#secure-btn');
if (($input).attr('type') == 'text') {
$input.attr('type', 'password');
$button.html('<i class="fas fa-eye fa-sm fa-fw"></i>');
} else {
$input.attr('type', 'text');
$button.html('<i class="fas fa-eye-slash fa-sm fa-fw"></i>');
}
}
<?php if ($retry_state == '2') :?>
$('#dup-pack-archive-panel').show();
$('#export-onlydb').prop( "checked", true );
<?php endif; ?>
//Init:Toggle OptionTabs
Duplicator.Pack.ToggleDBFilters();
Duplicator.Pack.EnableInstallerPassword();
$('input#package-name').focus().select();
});
</script>
|