Tribe__Tickets_Plus__Attendee_Repository::setup_attendee_args( array $args, array $attendee_data, null|Tribe__Tickets__Ticket_Object $ticket = null )

Set up the arguments to set for the attendee for this provider.


Parameters

$args

(array) (Required) List of arguments to set for the attendee.

$attendee_data

(array) (Required) List of additional attendee data.

$ticket

(null|Tribe__Tickets__Ticket_Object) (Optional) The ticket object or null if not relying on it.

Default value: null


Top ↑

Return

(array) List of arguments to set for the attendee.


Top ↑

Source

File: src/Tribe/Attendee_Repository.php

	public function setup_attendee_args( $args, $attendee_data, $ticket = null ) {
		return parent::setup_attendee_args(
			$this->handle_setup_attendee_args( $args, $attendee_data, $ticket ),
			$attendee_data,
			$ticket
		);
	}

Top ↑

Changelog

Changelog
Version Description
5.2.0 Introduced.