Post_Repository::attendee_types()
Returns an array of the attendee types handled by this repository.
Extending repository classes should override this to add more attendee types.
Return
(array)
Source
File: src/Tribe/Repositories/Post_Repository.php
public function attendee_types() {
return [
'rsvp' => 'tribe_rsvp_attendees',
'tribe-commerce' => 'tribe_tpp_attendees',
];
}
Changelog
| Version | Description |
|---|---|
| 4.12.1 | Introduced. |