Zoom_Provider::filter_zoom_password( null|string|int $password, array $requirements )

Filters the password for the Zoom Meeting.


Parameters

$password

(null|string|int) (Required) The password for the Zoom meeting.

$requirements

(array) (Required) An array of password requirements from Zoom.


Top ↑

Source

File: src/Tribe/Meetings/Zoom_Provider.php

	public function filter_zoom_password( $password, $requirements ) {
		return $this->container->make( Password::class )->filter_zoom_password( $password, $requirements );
	}

Top ↑

Changelog

Changelog
Version Description
1.0.2 Introduced.