Webinars
Class Meetings
Source
File: src/Tribe/Meetings/Zoom/Webinars.php
class Webinars extends Abstract_Meetings {
/**
* The name of the action used to generate a webinar creation link.
*
* @since 1.1.1
*
* @var string
*/
public static $create_action = 'events-virtual-meetings-zoom-webinar-create';
/**
* The name of the action used to update a webinar.
*
* @since 1.4.0
*
* @var string
*/
public static $update_action = 'events-virtual-meetings-zoom-wedbinar-update';
/**
* The name of the action used to remove a webinar link.
*
* @since 1.1.1
*
* @var string
*/
public static $remove_action = 'events-virtual-meetings-zoom-webinar-remove';
/**
* The type of the meeting handled by the class instance.
* Defaults to the Meetings one.
*
* @since 1.1.1
*
* @var string
*/
public static $meeting_type = 'webinar';
/**
* The Zoom API endpoint used to create and manage the meeting.
* Defaults to the one used for Meetings.
*
* @since 1.1.1
*
* @var string
*/
public static $api_endpoint = 'webinars';
/**
* The URL that will contain the meeting join instructions.
* Defaults to the one used for Meetings.
*
* @since 1.1.1
*
* @var string
*/
protected static $join_instructions_url = 'https://support.zoom.us/hc/en-us/articles/115004954946-Joining-and-participating-in-a-webinar-attendee-';
}
Changelog
| Version | Description |
|---|---|
| 1.1.1 | Introduced. |