Hooks::add_page_title()

Set the global admin page title when this page is being loaded.

@since 6.3.1


Source

File: src/Tribe/Admin/Manager/Hooks.php

	public function add_page_title() {
		global $title;
		if ( empty( $title ) ) {
			$title = $this->container->make( Page::class )->get_page_title(); // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited
		}
	}