Tribe__Tickets__Tickets_Handler::get_connections_template()
Returns which possible connections an Object might have
Return
(object) 'provider' => (mixed|null) 'event' => (int|null) 'product' => (int|null) 'order' => (int|string|null) 'order_item' => (int|null)
Source
File: src/Tribe/Tickets_Handler.php
public function get_connections_template() {
// If you add any new Items here, update the Docblock
$connections = (object) array(
'provider' => null,
'event' => null,
'product' => null,
'order' => null,
'order_item' => null,
);
return $connections;
}
Changelog
| Version | Description |
|---|---|
| 4.6.2 | Introduced. |