Zoom_Provider::check_admin_zoom_meeting( WP_Post $event )
Check Zoom Meeting in the admin.
Contents
Parameters
- $event
-
(WP_Post) (Required) The event post object.
Return
(bool|void) Whether the update completed.
Source
File: src/Tribe/Meetings/Zoom_Provider.php
public function check_admin_zoom_meeting( $event ) {
if ( ! $event instanceof \WP_Post ) {
// We should only act on event posts, else bail.
return $event;
}
return $this->container->make( Password::class )->update_password_from_zoom( $event );
}
Changelog
| Version | Description |
|---|---|
| 1.9.0 | - moved logic to Password->check_admin_zoom_meeting(). |
| 1.0.4 | Introduced. |