Automattic\WooCommerce\Internal\BatchProcessing

BatchProcessingController::get_enqueued_processors()publicWC 1.0

Helper method to get list of all the enqueued processors.

Method of the class: BatchProcessingController{}

No Hooks.

Return

Array. List (of string) of the class names of the enqueued processors.

Usage

$BatchProcessingController = new BatchProcessingController();
$BatchProcessingController->get_enqueued_processors() : array;

BatchProcessingController::get_enqueued_processors() code WC 8.7.0

public function get_enqueued_processors() : array {
	return get_option( self::ENQUEUED_PROCESSORS_OPTION_NAME, array() );
}