Automattic\WooCommerce\Internal\BatchProcessing

BatchProcessingController::get_enqueued_processors()publicWC 1.0

Helper method to get list of all the enqueued processors.

Метод класса: BatchProcessingController{}

Хуков нет.

Возвращает

Массив. List (of string) of the class names of the enqueued processors.

Использование

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

Код BatchProcessingController::get_enqueued_processors() WC 8.7.0

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