Settings::is_on_tab( string $tab = '' )

Check if the current page is on a specific tab for the Tickets settings.


Parameters

$tab

(string) (Optional) The tab name.

Default value: ''


Top ↑

Return

(boolean)


Top ↑

Source

File: src/Tribe/Admin/Settings.php

	public function is_on_tab( $tab = '' ): bool {
		if ( ! $this->is_tec_tickets_settings() || empty( $tab ) ) {
			return false;
		}

		return tribe_get_request_var( 'tab' ) === $tab;
	}

Top ↑

Changelog

Changelog
Version Description
5.5.9 Introduced.