Tribe__Tickets__REST__V1__Attendee_Repository::__construct()
Tribe__Tickets__REST__V1__Attendee_Repository constructor.
Source
File: src/Tribe/REST/V1/Attendee_Repository.php
public function __construct() {
$this->decorated = tribe( 'tickets.attendee-repository' );
$this->decorated->set_formatter( $this );
$this->decorated->set_query_builder($this);
$this->decorated->set_default_args( array_merge(
$this->decorated->get_default_args(),
array( 'order' => 'ASC', 'orderby' => array( 'id', 'title' ) )
) );
}
Changelog
| Version | Description |
|---|---|
| 4.8 | Introduced. |