Tribe__Events__Pro__Repositories__Venue::__construct()

Tribe__Events__Pro__Repositories__Venue constructor.

Contents


Source

File: src/Tribe/Repositories/Venue.php

	public function __construct() {
		parent::__construct();

		$this->add_schema_entry( 'geoloc_lat', array( $this, 'filter_by_geoloc_lat' ) );
		$this->add_schema_entry( 'geoloc_lng', array( $this, 'filter_by_geoloc_lng' ) );
		$this->add_schema_entry( 'geoloc', array( $this, 'filter_by_geoloc' ) );
		$this->add_schema_entry( 'has_geoloc', array( $this, 'filter_by_has_geoloc' ) );
		$this->add_schema_entry( 'near', array( $this, 'filter_by_near' ) );
	}

Top ↑

Changelog

Changelog
Version Description
4.7 Introduced.