Webex_Provider::filter_source_ical_webex_password( TribeEventsVirtualMeetingsarray $fields, WP_Post $event, string $key_name, string $type, boolean $should_show )

Filter the iCal export fields for Webex to add the password.


Parameters

$fields

(<span class="TribeEventsVirtualMeetingsarrayTribeEventsVirtualMeetingsarray<string|">TribeEventsVirtualMeetingsstring>) (Required) The various file format components for this specific event.

$event

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

$key_name

(string) (Required) The name of the array key to modify.

$type

(string) (Required) The name of the export type.

$should_show

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


Top ↑

Return

(TribeEventsVirtualMeetingsarray<string|TribeEventsVirtualMeetingsstring>) The various iCal file format components of this specific event item.


Top ↑

Source

File: src/Tribe/Meetings/Webex_Provider.php

	public function filter_source_ical_webex_password( $fields, $event, $key_name, $type, $should_show ) {
		return $this->container->make( Webex_Event_Export::class )->add_password_to_ical_description( $fields, $event, $key_name, $type, $should_show );
	}

Top ↑

Changelog

Changelog
Version Description
1.9.0 Introduced.