PATH:
home
/
letacommog
/
newrdv1
/
wp-content
/
plugins1
/
wp-optimize-premium.3.0.16
/
templates
/
database
<?php if (!defined('WPO_VERSION')) die('No direct access allowed'); ?> <?php // This next bit belongs somewhere else, I think. ?> <?php if ($optimize_db) { ?> <p><?php _e('Optimized all the tables found in the database.', 'wp-optimize'); ?></p> <?php } ?> <?php $table_information = WP_Optimize()->get_optimizer()->get_table_information(); do_action('wpo_tables_list_before', $table_information); ?> <?php $wp_optimize->include_template('take-a-backup.php', false, array('label' => __('Take a backup with UpdraftPlus before any actions upon tables (recommended).', 'wp-optimize'), 'default_checkbox_value' => 'true')); ?> <p class="wpo-table-list-filter"><strong><?php echo __('Database name:', 'wp-optimize')." '".htmlspecialchars(DB_NAME)."'"; ?><a id="wp_optimize_table_list_refresh" href="#" class="wpo-refresh-button"><span class="dashicons dashicons-image-rotate"></span><?php _e('Refresh tables', 'wp-optimize'); ?></a></strong> <input id="wpoptimize_table_list_filter" class="search" type="search" value="" placeholder="<?php esc_attr_e('Search for table', 'wp-optimize'); ?>" data-column="1" /></p> <table id="wpoptimize_table_list" class="wp-list-table widefat striped tablesorter wp-list-table-mobile-labels"> <thead> <tr> <th><?php _e('No.', 'wp-optimize'); ?></th> <th class="column-primary"><?php _e('Table', 'wp-optimize'); ?></th> <th><?php _e('Records', 'wp-optimize'); ?></th> <th><?php _e('Data Size', 'wp-optimize'); ?></th> <th><?php _e('Index Size', 'wp-optimize'); ?></th> <th><?php _e('Type', 'wp-optimize'); ?></th> <th><?php _e('Overhead', 'wp-optimize'); ?></th> <th><?php _e('Actions', 'wp-optimize'); ?></th> </tr> </thead> <?php WP_Optimize()->include_template('database/tables-body.php', false, array('optimize_db' => $optimize_db)); ?> </table> <div id="wpoptimize_table_list_tables_not_found"><?php _e('Tables not found.', 'wp-optimize'); ?></div> <h3><?php _e('Total size of database:', 'wp-optimize'); ?> <span id="optimize_current_db_size"> <?php list ($part1, $part2) = $optimizer->get_current_db_size(); echo $part1; ?> </span></h3> <?php if ($optimize_db) { ?> <h3><?php _e('Optimization results:', 'wp-optimize'); ?></h3> <p style="color: #0000ff;" id="optimization_table_total_gain"> <?php if ($total_gain > 0) { echo __('Total space saved:', 'wp-optimize').' <span>'.$wp_optimize->format_size($total_gain).'</span> '; $optimizer->update_total_cleaned(strval($total_gain)); } } ?> </p>
[+]
..
[-] optimizations-table.php
[edit]
[-] tables-body.php
[edit]
[-] tables.php
[edit]
[-] .database.php
[edit]
[-] optimize-table.php
[edit]