Tribe__Events__Main::register_plugin_autoload_paths()

Registers the plugin autoload paths in the Common Autoloader instance.

Contents


Source

File: src/Tribe/Main.php

		public function register_plugin_autoload_paths( ) {
			$prefixes = array(
				'Tribe__Events__' => $this->plugin_path . 'src/Tribe',
				'ForceUTF8__'     => $this->plugin_path . 'vendor/ForceUTF8',
			);

			$this->get_autoloader_instance()->register_prefixes( $prefixes );
		}

Top ↑

Changelog

Changelog
Version Description
4.9.2 Introduced.