Tribe__Tickets__REST__V1__Ticket_Repository::__construct()

Tribe__Tickets__REST__V1__Ticket_Repository constructor.

Contents


Source

File: src/Tribe/REST/V1/Ticket_Repository.php

	public function __construct() {
		$this->decorated = tribe( 'tickets.ticket-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' ) )
		) );
	}

Top ↑

Changelog

Changelog
Version Description
4.8 Introduced.