Zoom_Provider::update_event_for_multiple_accounts_support( WP_Post $event )
Check Zoom Meeting Account in the admin on every event for compatibility with multiple accounts.
Contents
Parameters
- $event
-
(WP_Post) (Required) The event post object.
Return
(bool|WP_Post) Whether the update completed or the WP Post instance if not an event.
Source
File: src/Tribe/Meetings/Zoom_Provider.php
public function update_event_for_multiple_accounts_support( $event ) {
if ( ! $event instanceof \WP_Post ) {
// We should only act on event posts, else bail.
return $event;
}
return $this->container->make( Api::class )->update_event_for_multiple_accounts_support( $event );
}
Changelog
| Version | Description |
|---|---|
| 1.5.0 | Introduced. |