Tribe__Tickets__Tickets::login_required()

Indicates if the user must be logged in in order to obtain tickets.


Return

(bool)


Top ↑

Source

File: src/Tribe/Tickets.php

		public function login_required() {
			$requirements = (array) tribe_get_option( 'ticket-authentication-requirements', [] );

			return in_array( 'event-tickets_all', $requirements, true );
		}

Top ↑

Changelog

Changelog
Version Description
4.7 Introduced.