ActionScheduler_AdminView::register_system_status_tab()publicWC 1.0

Registers action-scheduler into WooCommerce > System status.

Method of the class: ActionScheduler_AdminView{}

No Hooks.

Return

Array. $tabs An associative array of tab key => label, including Action Scheduler's tabs

Usage

$ActionScheduler_AdminView = new ActionScheduler_AdminView();
$ActionScheduler_AdminView->register_system_status_tab( $tabs );
$tabs(array) (required)
An associative array of tab key => label.

ActionScheduler_AdminView::register_system_status_tab() code WC 8.7.0

public function register_system_status_tab( array $tabs ) {
	$tabs['action-scheduler'] = __( 'Scheduled Actions', 'woocommerce' );

	return $tabs;
}