Api::__construct( TribeEventsVirtualEncryption $encryption, $template_modifications )
Api constructor.
Contents
Parameters
- $encryption
-
(TribeEventsVirtualEncryption) (Required) An instance of the Encryption handler.
Source
File: src/Tribe/Meetings/Zoom/Api.php
public function __construct( Encryption $encryption ) {
$this->encryption = ( ! empty( $encryption ) ? $encryption : tribe( Encryption::class ) );
// Attempt to load an account.
$this->load_account();
}
Changelog
| Version | Description |
|---|---|
| 1.9.0 | - Move request methods to a new class and load through construct. |
| 1.5.0 | - Add Account_API to support multiple accounts. |
| 1.4.0 | - Add encryption handler. |
| 1.0.0 | Introduced. |