Api::get_regex_meeting_id_url()

Get the regex to get the Zoom meeting/webinar id from a url.


Return

(string) The regex to get Zoom meeting/webinar id from a url from the filter if a string or the default.


Top ↑

Source

File: src/Tribe/Meetings/Zoom/Api.php

	public function get_regex_meeting_id_url() {
		/**
		 * Allow filtering of the regex to get Zoom meeting/webinar id from a url.
		 *
		 * @since 1.8.0
		 *
		 * @param string The regex to get Zoom meeting/webinar id from a url.
		 */
		$regex_meeting_id_url = apply_filters( 'tec_events_virtual_zoom_regex_meeting_id_url', $this->regex_meeting_id_url );

		return is_string( $regex_meeting_id_url ) ? $regex_meeting_id_url : $this->regex_meeting_id_url;
	}

Top ↑

Changelog

Changelog
Version Description
1.8.0 Introduced.