Manager::load_event_automator()
Loads the Event Automator integration.
Source
File: src/Tribe/Integrations/Manager.php
public function load_event_automator() {
if ( ! defined( 'EVENT_TICKETS_DIR' ) ) {
do_action( 'tribe_log', 'error', __CLASS__, [ 'error' => 'The Event Tickets plugin does not exist.' ] );
return;
}
tribe_register_provider( Event_Automator::class );
}
Changelog
| Version | Description |
|---|---|
| 6.0.0 | Introduced. |