You are here

public function EventDispatcherInterface::alterQueueLoadedPaymentIds in Payment 8.2

Alters the payment IDs loaded by a payment queue.

Parameters

string $queue_id: The ID of the queue to alter IDs for.

string $category_id: The category of the IDs to alter.

int $owner_id: The ID of the user for whom the IDs are retrieved.

int[] $payment_ids: The IDs to alter.

Return value

int[] The altered IDs.

2 methods override EventDispatcherInterface::alterQueueLoadedPaymentIds()
EventDispatcherCollection::alterQueueLoadedPaymentIds in src/EventDispatcherCollection.php
Alters the payment IDs loaded by a payment queue.
SymfonyEventDispatcher::alterQueueLoadedPaymentIds in src/SymfonyEventDispatcher.php
Alters the payment IDs loaded by a payment queue.

File

src/EventDispatcherInterface.php, line 34

Class

EventDispatcherInterface
Defines a Payment event dispatcher.

Namespace

Drupal\payment

Code

public function alterQueueLoadedPaymentIds($queue_id, $category_id, $owner_id, array $payment_ids);