ActionScheduler_AdminView::register_system_status_tab()
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() ActionScheduler AdminView::register system status tab code WC 9.5.1
public function register_system_status_tab( array $tabs ) { $tabs['action-scheduler'] = __( 'Scheduled Actions', 'woocommerce' ); return $tabs; }