HEX
Server: Apache/2.4.65 (Debian)
System: Linux 88f31f35b0b8 6.1.0-38-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.147-1 (2025-08-02) x86_64
User: www-data (33)
PHP: 8.2.29
Disabled: NONE
Upload Files
File: /var/www/html/wp-content/plugins/breeze/views/option-tabs/dbsummary-tab.php
<?php
/**
 * Basic tab
 */
if ( ! defined( 'ABSPATH' ) ) {
	header( 'Status: 403 Forbidden' );
	header( 'HTTP/1.1 403 Forbidden' );
	exit;
}

set_as_network_screen();

if ( ! class_exists( 'Breeze_Db_Summary_List_Table' ) ) {
	require_once BREEZE_PLUGIN_DIR . 'inc/helpers/class-breeze-db-summary-table.php';

}
$myListTable = new Breeze_Db_Summary_List_Table();


$summary_icon = BREEZE_PLUGIN_URL . 'assets/images/dbsummary-active.png';


?>
<section>
	<div class="br-section-title">
		<img src="<?php echo esc_url( $summary_icon ); ?>"/>
		<?php esc_html_e( 'DATABASE SUMMARY', 'breeze' ); ?>
	</div>
	<div>
		<!-- START OPTION -->
		<div class="br-option-item">
			<div id="dbsummary-content">

				<?php
				// Get statistics data
				echo wp_kses_post( $myListTable->get_statistics() );

				// Invoke table helper
				$myListTable->prepare_items();
				$myListTable->display();
				?>

			</div>
		</div>
		<!-- END OPTION -->
	</div>

</section>