Automattic\WooCommerce\Internal\Admin

SystemStatusReport::system_status_report()publicWC 1.0

Hooks extra necessary sections into the system status report template

Метод класса: SystemStatusReport{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$SystemStatusReport = new SystemStatusReport();
$SystemStatusReport->system_status_report();

Код SystemStatusReport::system_status_report() WC 8.7.0

<?php
public function system_status_report() {
	?>
		<table class="wc_status_table widefat" cellspacing="0">
			<thead>
			<tr>
				<th colspan="5" data-export-label="Admin">
					<h2>
						<?php esc_html_e( 'Admin', 'woocommerce' ); ?><?php echo wc_help_tip( esc_html__( 'This section shows details of WC Admin.', 'woocommerce' ) ); ?>
					</h2>
				</th>
			</tr>
			</thead>
			<tbody>
				<?php
					$this->render_features();
					$this->render_daily_cron();
					$this->render_options();
					$this->render_notes();
					$this->render_onboarding_state();
				?>
			</tbody>
		</table>
	<?php
}