Automattic\WooCommerce\Internal\BatchProcessing
BatchProcessingController::get_enqueued_processors()
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() BatchProcessingController::get enqueued processors WC 7.7.0
public function get_enqueued_processors() : array { return get_option( self::ENQUEUED_PROCESSORS_OPTION_NAME, array() ); }