Hooks::update_attendee_data( array $attendee_data, int $attendee_id, int $post_id )

Updates the Attendee metadata after insertion.


Parameters

$attendee_data

(array) (Required) Information that we are trying to save.

$attendee_id

(int) (Required) The attendee ID.

$post_id

(int) (Required) The event/post ID.


Top ↑

Source

File: src/Tickets/Commerce/Hooks.php

	public function update_attendee_data( $attendee_data, $attendee_id, $post_id ) {
		$this->container->make( Attendee::class )->update_attendee_data( $attendee_data, $attendee_id, $post_id );
	}

Top ↑

Changelog

Changelog
Version Description
5.1.9 Introduced.