Tribe__Main::tribe_plugins_loaded()

Runs tribe_plugins_loaded action, should be hooked to the end of plugins_loaded


Source

File: src/Tribe/Main.php

	public function tribe_plugins_loaded() {
		tribe( 'admin.notice.php.version' );
		tribe_singleton( 'feature-detection', 'Tribe__Feature_Detection' );
		tribe_register_provider( 'Tribe__Service_Providers__Processes' );

		if ( ! defined( 'TRIBE_HIDE_MARKETING_NOTICES' ) ) {
			tribe( 'admin.notice.marketing' );
		}

		/**
		 * Runs after all plugins including Tribe ones have loaded
		 *
		 * @since 4.3
		 */
		do_action( 'tribe_plugins_loaded' );
	}