Tribe__Events__Community__Main::register_active_plugin()

Registers this plugin as being active for other tribe plugins and extensions

Contents


Return

(bool) Indicates if Tribe Common wants the plugin to run


Top ↑

Source

File: src/Tribe/Main.php

		public function register_active_plugin() {
			if ( ! function_exists( 'tribe_register_plugin' ) ) {
				return true;
			}

			return tribe_register_plugin( EVENTS_COMMUNITY_FILE, __CLASS__, self::VERSION );
		}