Tribe__Tickets__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__Tickets__' => $this->plugin_path . 'src/Tribe',
		);

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

Top ↑

Changelog

Changelog
Version Description
4.10.6 Introduced.