oont-contents/plugins/wp-optimize/templates/database/tables-list-after.php
2025-02-10 13:57:45 +01:00

59 lines
No EOL
2.8 KiB
PHP

<?php
if (!defined('WPO_VERSION')) die('No direct access allowed');
if ($load_data) {
$optimizer = WP_Optimize()->get_optimizer();
list ($db_size, $total_gain) = $optimizer->get_current_db_size();
}
?>
<h3><?php esc_html_e('Total size of database:', 'wp-optimize'); ?> <span id="optimize_current_db_size"><?php
if ($load_data) {
echo esc_html($db_size);
} else {
echo '...';
}
?></span></h3>
<?php
if ($optimize_db) {
?>
<h3><?php esc_html_e('Optimization results:', 'wp-optimize'); ?></h3>
<p style="color: #0000ff;" id="optimization_table_total_gain">
<?php
if ($total_gain > 0) {
printf(esc_html__('Total space saved: %s', 'wp-optimize'), '<span>'. esc_html($wp_optimize->format_size($total_gain)).'</span> ');
$optimizer->update_total_cleaned(strval($total_gain));
}
?>
</p>
<?php
}
?>
<script type="text/html" id="tmpl-wpo-table-delete">
<h3><span class="dashicons dashicons-warning"></span> <?php esc_html_e('Are you sure?', 'wp-optimize'); ?></h3>
<div class="notice notice-warning">
<p><?php echo esc_html__('WARNING - some plugins might not be detected as installed or activated if they are in unknown folders (for example premium plugins).', 'wp-optimize').' '.esc_html__('Only delete a table if you are sure of what you are doing, and after taking a backup.', 'wp-optimize'); ?></p>
<p><?php echo esc_html__('If none of the plugins listed were ever installed on this website, you should not delete this table as it is likely to be used by an unlisted plugin.', 'wp-optimize'); ?></p>
</div>
<h4><?php printf(esc_html__('You are about to remove the table %s.', 'wp-optimize'), '<span class="table-name">{{data.table_name}}</span>'); ?></h4>
<div class="wpo-table-delete--plugins">
{{{data.plugins_list}}}
</div>
<# if (data.no_backup) { #>
<p class="no-backup-detected">
<label for="confirm_deletion_without_backup"><input type="checkbox" id="confirm_deletion_without_backup"> <strong><?php esc_html_e('No automatic backup was detected.', 'wp-optimize'); ?></strong> <?php esc_html_e('I confirm that I will be able to revert the changes if needed.', 'wp-optimize'); ?></label>
</p>
<# } #>
<p>
<label for="confirm_table_deletion"><input type="checkbox" id="confirm_table_deletion"> <?php esc_html_e('I confirm that I have understood the risks in doing that, and that I know what I am doing.', 'wp-optimize'); ?></label>
</p>
<p>
<label for="ignores_table_deletion_warning"><input type="checkbox" id="ignores_table_deletion_warning"> <?php esc_html_e('Do not show this warning again.', 'wp-optimize'); ?></label>
</p>
<button type="button" class="button button-primary delete-table" disabled><?php esc_html_e('Remove the table', 'wp-optimize'); ?></button>
<button type="button" class="button cancel wpo-modal--close"><?php esc_html_e('Cancel', 'wp-optimize'); ?></button>
</script>