Webex_Provider::action_add_event_single_webex_details()
Include the Webex details for event single.
Source
File: src/Tribe/Meetings/Webex_Provider.php
public function action_add_event_single_webex_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_webex_details(); }
Changelog
Version | Description |
---|---|
1.9.0 | Introduced. |