ActionScheduler_AdminView::register_system_status_tab
Registers action-scheduler into WooCommerce > System status.
Method of the class: ActionScheduler_AdminView{}
No Hooks.
Returns
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() ActionScheduler AdminView::register system status tab code WC 10.6.2
public function register_system_status_tab( array $tabs ) {
$tabs['action-scheduler'] = __( 'Scheduled Actions', 'woocommerce' );
return $tabs;
}