Settings::is_on_tab( string $tab = '' )
Check if the current page is on a specific tab for the Tickets settings.
Contents
Parameters
- $tab
-
(string) (Optional) The tab name.
Default value: ''
Return
(boolean)
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;
}
Changelog
| Version | Description |
|---|---|
| 5.5.9 | Introduced. |