Provider::register_ct1_providers()

The RBE (Custom Tables) providers to be registered. Validates the conditions required to register providers.

Contents


Source

File: src/Tickets/Provider.php

	public function register_ct1_providers() {
		if ( ! class_exists( TEC_CT1_Provider::class ) ) {
			return;
		}

		if ( ! TEC_CT1_Provider::is_active() ) {
			return;
		}

		$this->container->register( ET_CT1_Provider::class );
	}

Top ↑

Changelog

Changelog
Version Description
5.5.0 Introduced.