Url

Class Url


Source

File: src/Tribe/Meetings/Microsoft/Url.php

class Url extends Abstract_Url {

	/**
	 * Url constructor.
	 *
	 * @since 1.13.0
	 * @since 1.13.3 - Remove API dependency to prevent maximum function nesting level.
	 *
	 * @param Actions $actions An instance of the Microsoft Actions handler.
	 */
	public function __construct( Actions $actions ) {
		self::$api_id        = Microsoft_Event_Meta::$key_source_id;
		self::$authorize_url = 'https://whodat.theeventscalendar.com/oauth/microsoft/v1/authorize';
		self::$refresh_url   = 'https://whodat.theeventscalendar.com/oauth/microsoft/v1/refresh';
		self::$revoke_url    = 'https://whodat.theeventscalendar.com/oauth/microsoft/v1/revoke';
		$this->actions       = $actions;
	}
}

Top ↑

Changelog

Changelog
Version Description
1.13.0 Introduced.

Top ↑

Methods