* LiteSpeed Cache Dashboard Wrapper
* Renders the main dashboard page for the LiteSpeed Cache plugin in the WordPress admin area.
defined( 'WPINC' ) || exit;
'dashboard' => esc_html__( 'Dashboard', 'litespeed-cache' ),
if ( $this->_is_network_admin ) {
'network_dash' => esc_html__( 'Network Dashboard', 'litespeed-cache' ),
<h1 class="litespeed-h1">
<?php echo esc_html__( 'LiteSpeed Cache Dashboard', 'litespeed-cache' ); ?>
<span class="litespeed-desc">
<?php echo esc_html( 'v' . Core::VER ); ?>
<hr class="wp-header-end">
<div class="litespeed-wrap">
foreach ( $menu_list as $tab_key => $tab_val ) {
echo '<div data-litespeed-layout="' . esc_attr( $tab_key ) . '">';
require LSCWP_DIR . 'tpl/dash/' . $tab_key . '.tpl.php';