Service_Provider::init_merged_plugin()

Load the Event Automator framework.


Return

(void)


Top ↑

Source

File: src/Tribe/Integrations/Event_Automator/Service_Provider.php

	public function init_merged_plugin(): void {
		if ( ! class_exists( \TEC\Event_Automator\Plugin::class, true ) ) {
			do_action( 'tribe_log', 'error', __CLASS__, [ 'error' => 'The Event Automator `Plugin` class does not exist.' ] );

			return;
		}

		tribe_register_provider( \TEC\Event_Automator\Plugin::class );

		// Register ECP specific services.
		$this->container->register( Power_Automate_Provider::class );
		$this->container->register( Zapier_Provider::class );
	}

Top ↑

Changelog

Changelog
Version Description
7.0.0 Introduced.