Tribe__Tickets__Admin__Notices::maybe_display_notices()
Maybe display admin notices.
Source
File: src/Tribe/Admin/Notices.php
public function maybe_display_notices() {
// Bail on the unexpected
if (
! function_exists( 'tribe_installed_before' )
|| ! class_exists( 'Tribe__Admin__Notices' )
) {
return;
}
$this->maybe_display_plus_commerce_notice();
// @todo Uncomment this when we are ready to show the opt-in notice in G20.07.
// $this->maybe_display_rsvp_new_views_options_notice();
}
Changelog
| Version | Description |
|---|---|
| 4.12.3 | Introduced. |