Tribe__Settings::should_setup_pages()

Determines whether or not the full admin pages should be initialized.

Contents


Return

(boolean)


Top ↑

Source

File: src/Tribe/Settings.php

		public function should_setup_pages() {
			if ( ! class_exists( 'Tribe__Events__Main' ) ) {
				return true;
			}

			if ( version_compare( Tribe__Events__Main::VERSION, '4.0beta', '>=' ) ) {
				return true;
			}

			return false;
		}