Template_Modifications::get_connect_link( TribeEventsVirtualMeetingsWebexApi $api, TribeEventsVirtualMeetingsWebexUrl $url )

Gets Webex connect link.


Parameters

$api

(TribeEventsVirtualMeetingsWebexApi) (Required) An instance of the Webex API handler.

$url

(TribeEventsVirtualMeetingsWebexUrl) (Required) The URLs handler for the integration.


Top ↑

Return

(string) HTML for the authorize fields.


Top ↑

Source

File: src/Tribe/Meetings/Webex/Template_Modifications.php

	public function get_connect_link( Api $api, Url $url ) {
		$args = [
			'api' => $api,
			'url' => $url,
		];

		return $this->admin_template->template( 'webex/api/authorize-fields/connect-link', $args, false );
	}

Top ↑

Changelog

Changelog
Version Description
1.0.1 Introduced.