Automattic\WooCommerce\Internal\PushNotifications\Services

PendingNotificationStore::get_allpublicWC 10.7.0

Returns all pending notifications.

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

Хуков нет.

Возвращает

Notification[].

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

$PendingNotificationStore = new PendingNotificationStore();
$PendingNotificationStore->get_all(): array;

Список изменений

С версии 10.7.0 Введена.

Код PendingNotificationStore::get_all() WC 11.0.1

public function get_all(): array {
	return array_values( $this->pending );
}