Password::filter_zoom_password( null|string|int $unused_password, array $requirements )

Filter the Zoom meeting password on meeting creation.


Parameters

$unused_password

(null|string|int) (Required) The existing password for the Zoom meeting, if any.

$requirements

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


Top ↑

Return

(string) The password for the Zoom meeting.


Top ↑

Source

File: src/Tribe/Meetings/Zoom/Password.php

	public function filter_zoom_password( $unused_password, array $requirements ) {
		return $this->generate_zoom_password(
			Arr::get( $requirements, 'password_length', 10 ),
			Arr::get( $requirements, 'password_have_special_character', false ),
			Arr::get( $requirements, 'password_only_allow_numeric', false )
		);
	}

Top ↑

Changelog

Changelog
Version Description
1.0.2 Introduced.