ActionScheduler_AdminView_Deprecated::bulk_actions()publicWC 1.0

Do not include the "Edit" action for the Scheduled Actions administration screen.

Hooked to the 'bulk_actions-edit-action-scheduler' filter.

Method of the class: ActionScheduler_AdminView_Deprecated{}

No Hooks.

Return

Array. $actions An associative array of actions which can be performed on the 'scheduled-action' post type.

Usage

$ActionScheduler_AdminView_Deprecated = new ActionScheduler_AdminView_Deprecated();
$ActionScheduler_AdminView_Deprecated->bulk_actions( $actions );
$actions(array) (required)
An associative array of actions which can be performed on the 'scheduled-action' post type.

ActionScheduler_AdminView_Deprecated::bulk_actions() code WC 8.7.0

public function bulk_actions( $actions ) {
	_deprecated_function( __METHOD__, '2.0.0' );
	return $actions;
}