Webex_Provider::add_password_to_outlook_description( string $url, string $base_url, TribeEventsVirtualMeetingsarray $params, TribeEventsVirtualMeetingsOutlook_Methods $outlook_methods, WP_Post $event, boolean $should_show )

Filter the Outlook single event export url for Webex to add the password.


Parameters

$url

(string) (Required) The url used to subscribe to a calendar in Outlook.

$base_url

(string) (Required) The base url used to subscribe in Outlook.

$params

(<span class="TribeEventsVirtualMeetingsarrayTribeEventsVirtualMeetingsarray<string|">TribeEventsVirtualMeetingsstring>) (Required) An array of parameters added to the base url.

$outlook_methods

(TribeEventsVirtualMeetingsOutlook_Methods) (Required) An instance of the link abstract.

$event

(WP_Post) (Required) The WP_Post of this event.

$should_show

(boolean) (Required) Whether to modify the export fields for the current user, default to false.


Top ↑

Return

(string) The export url used to generate an Outlook event for the single event.


Top ↑

Source

File: src/Tribe/Meetings/Webex_Provider.php

	public function add_password_to_outlook_description( $url, $base_url, $params, $outlook_methods, $event, $should_show ) {
		return $this->container->make( Webex_Event_Export::class )->add_password_to_outlook_description( $url, $base_url, $params, $outlook_methods, $event, $should_show );
	}

Top ↑

Changelog

Changelog
Version Description
1.13.0 Introduced.