Initial commit: Atomaste website

This commit is contained in:
2025-12-10 12:17:30 -05:00
commit 0b9e5d1605
19260 changed files with 5206382 additions and 0 deletions

View File

@@ -0,0 +1,47 @@
<?php
/**
* LiteSpeed Cache Database Optimization
*
* @package LiteSpeed
*/
namespace LiteSpeed;
defined( 'WPINC' ) || exit;
$menu_list = array(
'manage' => esc_html__( 'Manage', 'litespeed-cache' ),
);
if ( ! is_network_admin() ) {
$menu_list['settings'] = esc_html__( 'DB Optimization Settings', 'litespeed-cache' );
}
?>
<div class="wrap">
<h1 class="litespeed-h1">
<?php esc_html_e( 'LiteSpeed Cache Database Optimization', 'litespeed-cache' ); ?>
</h1>
<span class="litespeed-desc">
<?php echo esc_html( 'v' . Core::VER ); ?>
</span>
<hr class="wp-header-end">
</div>
<div class="litespeed-wrap">
<h2 class="litespeed-header nav-tab-wrapper">
<?php GUI::display_tab_list( $menu_list ); ?>
</h2>
<div class="litespeed-body">
<?php
foreach ( $menu_list as $tab_key => $tab_val ) {
echo '<div data-litespeed-layout="' . esc_attr( $tab_key ) . '">';
require LSCWP_DIR . 'tpl/db_optm/' . $tab_key . '.tpl.php';
echo '</div>';
}
?>
</div>
</div>

View File

@@ -0,0 +1,202 @@
<?php
/**
* LiteSpeed Cache Database Optimization
*
* Manages database optimization options and displays table engine conversion tools.
*
* @package LiteSpeed
* @since 1.0.0
*/
namespace LiteSpeed;
defined( 'WPINC' ) || exit;
$_panels = array(
'all' => array(
'title' => esc_html__( 'Clean All', 'litespeed-cache' ),
'desc' => '',
),
'revision' => array(
'title' => esc_html__( 'Post Revisions', 'litespeed-cache' ),
'desc' => esc_html__( 'Clean all post revisions', 'litespeed-cache' ),
),
'orphaned_post_meta' => array(
'title' => esc_html__( 'Orphaned Post Meta', 'litespeed-cache' ),
'desc' => esc_html__( 'Clean all orphaned post meta records', 'litespeed-cache' ),
),
'auto_draft' => array(
'title' => esc_html__( 'Auto Drafts', 'litespeed-cache' ),
'desc' => esc_html__( 'Clean all auto saved drafts', 'litespeed-cache' ),
),
'trash_post' => array(
'title' => esc_html__( 'Trashed Posts', 'litespeed-cache' ),
'desc' => esc_html__( 'Clean all trashed posts and pages', 'litespeed-cache' ),
),
'spam_comment' => array(
'title' => esc_html__( 'Spam Comments', 'litespeed-cache' ),
'desc' => esc_html__( 'Clean all spam comments', 'litespeed-cache' ),
),
'trash_comment' => array(
'title' => esc_html__( 'Trashed Comments', 'litespeed-cache' ),
'desc' => esc_html__( 'Clean all trashed comments', 'litespeed-cache' ),
),
'trackback-pingback' => array(
'title' => esc_html__( 'Trackbacks/Pingbacks', 'litespeed-cache' ),
'desc' => esc_html__( 'Clean all trackbacks and pingbacks', 'litespeed-cache' ),
),
'expired_transient' => array(
'title' => esc_html__( 'Expired Transients', 'litespeed-cache' ),
'desc' => esc_html__( 'Clean expired transient options', 'litespeed-cache' ),
),
'all_transients' => array(
'title' => esc_html__( 'All Transients', 'litespeed-cache' ),
'desc' => esc_html__( 'Clean all transient options', 'litespeed-cache' ),
),
'optimize_tables' => array(
'title' => esc_html__( 'Optimize Tables', 'litespeed-cache' ),
'desc' => esc_html__( 'Optimize all tables in your database', 'litespeed-cache' ),
),
);
$rev_max = $this->conf( Base::O_DB_OPTM_REVISIONS_MAX );
$rev_age = $this->conf( Base::O_DB_OPTM_REVISIONS_AGE );
if ( $rev_max || $rev_age ) {
$_panels['revision']['desc'] = sprintf(
esc_html__( 'Clean revisions older than %1$s day(s), excluding %2$s latest revisions', 'litespeed-cache' ),
'<strong>' . esc_html( $rev_age ) . '</strong>',
'<strong>' . esc_html( $rev_max ) . '</strong>'
);
}
$total = 0;
foreach ( $_panels as $key => $v ) {
if ( 'all' !== $key ) {
$_panels[ $key ]['count'] = $this->cls( 'DB_Optm' )->db_count( $key );
if ( ! in_array( $key, array( 'optimize_tables' ), true ) ) {
$total += $_panels[ $key ]['count'];
}
}
$_panels[ $key ]['link'] = Utility::build_url( Router::ACTION_DB_OPTM, $key );
}
$_panels['all']['count'] = $total;
$autoload_summary = DB_Optm::cls()->autoload_summary();
?>
<h3 class="litespeed-title">
<?php esc_html_e( 'Database Optimizer', 'litespeed-cache' ); ?>
<?php Doc::learn_more( 'https://docs.litespeedtech.com/lscache/lscwp/database/' ); ?>
</h3>
<div class="litespeed-panel-wrapper litespeed-cards-wrapper">
<?php foreach ( $_panels as $key => $v ) : ?>
<a href="<?php echo esc_url( $v['link'] ); ?>" class="litespeed-panel postbox">
<section class="litespeed-panel-wrapper-icon">
<span class="litespeed-panel-icon-<?php echo esc_attr( $key ); ?>"></span>
</section>
<section class="litespeed-panel-content">
<div class="litespeed-h3">
<?php echo esc_html( $v['title'] ); ?>
<span class="litespeed-panel-counter<?php echo $v['count'] > 0 ? '-red' : ''; ?>">(<?php echo esc_html( $v['count'] ); ?><?php echo DB_Optm::hide_more() ? '+' : ''; ?>)</span>
</div>
<span class="litespeed-panel-para"><?php echo wp_kses_post( $v['desc'] ); ?></span>
</section>
<section class="litespeed-panel-wrapper-top-right">
<span class="litespeed-panel-top-right-icon<?php echo $v['count'] > 0 ? '-cross' : '-tick'; ?>"></span>
</section>
</a>
<?php endforeach; ?>
</div>
<h3 class="litespeed-title"><?php esc_html_e( 'Database Table Engine Converter', 'litespeed-cache' ); ?></h3>
<div class="litespeed-panel-wrapper">
<table class="wp-list-table widefat striped">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col"><?php esc_html_e( 'Table', 'litespeed-cache' ); ?></th>
<th scope="col"><?php esc_html_e( 'Engine', 'litespeed-cache' ); ?></th>
<th scope="col"><?php esc_html_e( 'Tool', 'litespeed-cache' ); ?></th>
</tr>
</thead>
<tbody>
<?php
$list = DB_Optm::cls()->list_myisam();
if ( ! empty( $list ) ) :
foreach ( $list as $k => $v ) :
?>
<tr>
<td><?php echo esc_html( $k + 1 ); ?></td>
<td><?php echo esc_html( $v->table_name ); ?></td>
<td><?php echo esc_html( $v->engine ); ?></td>
<td>
<a href="<?php echo esc_url( Utility::build_url( Router::ACTION_DB_OPTM, DB_Optm::TYPE_CONV_TB, false, false, array( 'tb' => $v->table_name ) ) ); ?>">
<?php esc_html_e( 'Convert to InnoDB', 'litespeed-cache' ); ?>
</a>
</td>
</tr>
<?php endforeach; ?>
<?php else : ?>
<tr>
<td colspan="4" class="litespeed-success litespeed-text-center">
<?php esc_html_e( 'We are good. No table uses MyISAM engine.', 'litespeed-cache' ); ?>
</td>
</tr>
<?php endif; ?>
</tbody>
</table>
</div>
<style type="text/css">
.litespeed-body .field-col {
display: inline-block;
vertical-align: top;
margin-left: 20px;
margin-right: 20px;
}
.litespeed-body .field-col:first-child {
margin-left: 0;
}
</style>
<h3 class="litespeed-title"><?php esc_html_e( 'Database Summary', 'litespeed-cache' ); ?></h3>
<div>
<div class="field-col">
<p>
<?php esc_html_e( 'Autoload size', 'litespeed-cache' ); ?>: <strong><?php echo esc_html( Utility::real_size( $autoload_summary->autoload_size ) ); ?></strong></p>
<p><?php esc_html_e( 'Autoload entries', 'litespeed-cache' ); ?>: <strong><?php echo esc_html( $autoload_summary->autload_entries ); ?></strong></p>
</div>
<div class="field-col">
<p><?php esc_html_e( 'Autoload top list', 'litespeed-cache' ); ?>:</p>
<table class="wp-list-table widefat striped litespeed-width-auto litespeed-table-compact">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col"><?php esc_html_e( 'Option Name', 'litespeed-cache' ); ?></th>
<th scope="col"><?php esc_html_e( 'Autoload', 'litespeed-cache' ); ?></th>
<th scope="col"><?php esc_html_e( 'Size', 'litespeed-cache' ); ?></th>
</tr>
</thead>
<tbody>
<?php foreach ( $autoload_summary->autoload_toplist as $k => $v ) : ?>
<tr>
<td><?php echo esc_html( $k + 1 ); ?></td>
<td><?php echo esc_html( $v->option_name ); ?></td>
<td><?php echo esc_html( $v->autoload ); ?></td>
<td><?php echo esc_html( $v->option_value_length ); ?></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</div>
</div>

View File

@@ -0,0 +1,56 @@
<?php
/**
* LiteSpeed Cache Database Optimization Settings
*
* Manages settings for database optimization in LiteSpeed Cache.
*
* @package LiteSpeed
* @since 1.0.0
*/
namespace LiteSpeed;
defined( 'WPINC' ) || exit;
$this->form_action();
?>
<h3 class="litespeed-title-short">
<?php esc_html_e( 'DB Optimization Settings', 'litespeed-cache' ); ?>
<?php Doc::learn_more( 'https://docs.litespeedtech.com/lscache/lscwp/database/#db-optimization-settings-tab' ); ?>
</h3>
<table class="wp-list-table striped litespeed-table"><tbody>
<tr>
<th>
<?php $option_id = Base::O_DB_OPTM_REVISIONS_MAX; ?>
<?php $this->title( $option_id ); ?>
</th>
<td>
<?php $this->build_input( $option_id, 'litespeed-input-short' ); ?>
<div class="litespeed-desc">
<?php esc_html_e( 'Specify the number of most recent revisions to keep when cleaning revisions.', 'litespeed-cache' ); ?>
<?php $this->_validate_ttl( $option_id, 1, 100, true ); ?>
</div>
</td>
</tr>
<tr>
<th>
<?php $option_id = Base::O_DB_OPTM_REVISIONS_AGE; ?>
<?php $this->title( $option_id ); ?>
</th>
<td>
<?php $this->build_input( $option_id, 'litespeed-input-short' ); ?> <?php esc_html_e( 'Day(s)', 'litespeed-cache' ); ?>
<div class="litespeed-desc">
<?php esc_html_e( 'Revisions newer than this many days will be kept when cleaning revisions.', 'litespeed-cache' ); ?>
<?php $this->_validate_ttl( $option_id, 1, 600, true ); ?>
</div>
</td>
</tr>
</tbody></table>
<?php
$this->form_end();
?>