Power_Automate_Provider::add_edd_attendee_to_queue( int $attendee_id, int $post_id, int $order_id, int $product_id )

Add EDD attendee to queue.


Parameters

$attendee_id

(int) (Required) ID of attendee ticket.

$post_id

(int) (Required) ID of event.

$order_id

(int) (Required) Easy Digital Downloads order ID.

$product_id

(int) (Required) Easy Digital Downloads product ID.


Top ↑

Source

File: src/Common/Event_Automator/Power_Automate/Power_Automate_Provider.php

	public function add_edd_attendee_to_queue( $attendee_id, $post_id, $order_id, $product_id ) {
		$data = [
			'post_id'    => $post_id,
			'product_id' => $product_id,
			'order_id'   => $order_id,
		];

		$this->container->make( Attendees::class )->add_to_queue( $attendee_id, $data );
	}