Zoom_Provider::action_add_event_single_zoom_details()
Include the zoom details for event single.
Source
File: src/Tribe/Meetings/Zoom_Provider.php
public function action_add_event_single_zoom_details() {
// Don't show if requires log in and user isn't logged in.
$base_modifications = $this->container->make( 'Tribe\Events\Virtual\Template_Modifications' );
$should_show = $base_modifications->should_show_virtual_content( tribe_get_Event( get_the_ID() ) );
if ( ! $should_show ) {
return;
}
$template_modifications = $this->container->make( Template_Modifications::class );
$template_modifications->add_event_single_zoom_details();
}
Changelog
| Version | Description |
|---|---|
| 1.0.0 | Introduced. |