Tribe__Tickets__Tickets::filter_admin_tickets_table_provider_info( array[] $provider_info )
Filter provider information for the admin tickets table.
Contents
Parameters
- $provider_info
-
(array[]) (Required) The list of provider information.
Return
(array[]) The filtered list of provider information.
Source
File: src/Tribe/Tickets.php
public function filter_admin_tickets_table_provider_info( $provider_info ) {
$provider_info[ $this->class_name ] = [
'title' => $this->plugin_name,
'event_meta_key' => $this->get_event_key(),
'attendee_post_type' => $this->attendee_object,
'ticket_post_type' => $this->ticket_object,
];
return $provider_info;
}
Changelog
| Version | Description |
|---|---|
| 5.14.0 | Introduced. |