Changed voiceBridge parameter from optional to required in PHP library in labs
This commit is contained in:
parent
efd601c029
commit
e075e65cbe
@ -22,7 +22,7 @@ $creationParams = array(
|
||||
'moderatorPw' => 'mp', // Match this value in getJoinMeetingURL() to join as moderator.
|
||||
'welcomeMsg' => '', // ''= use default. Change to customize.
|
||||
'dialNumber' => '', // The main number to call into. Optional.
|
||||
'voiceBridge' => '', // PIN to join voice. Optional.
|
||||
'voiceBridge' => '12345', // 5 digit PIN to join voice conference. Required.
|
||||
'webVoice' => '', // Alphanumeric to join voice. Optional.
|
||||
'logoutUrl' => '', // Default in bigbluebutton.properties. Optional.
|
||||
'maxParticipants' => '-1', // Optional. -1 = unlimitted. Not supported in BBB. [number]
|
||||
@ -58,4 +58,4 @@ if ($itsAllGood == true) {
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
?>
|
||||
|
@ -22,7 +22,7 @@ $creationParams = array(
|
||||
'moderatorPw' => 'mp', // Match this value in getJoinMeetingURL() to join as moderator.
|
||||
'welcomeMsg' => '', // ''= use default. Change to customize.
|
||||
'dialNumber' => '', // The main number to call into. Optional.
|
||||
'voiceBridge' => '', // PIN to join voice. Optional.
|
||||
'voiceBridge' => '12345', // 5 digit PIN to join voice. Required.
|
||||
'webVoice' => '', // Alphanumeric to join voice. Optional.
|
||||
'logoutUrl' => '', // Default in bigbluebutton.properties. Optional.
|
||||
'maxParticipants' => '-1', // Optional. -1 = unlimitted. Not supported in BBB. [number]
|
||||
@ -58,4 +58,4 @@ if ($itsAllGood == true) {
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
?>
|
||||
|
@ -153,7 +153,7 @@ class BigBlueButton {
|
||||
'moderatorPw' => 'mp', -- Set to 'mp' and use 'mp' to join = no user pass required.
|
||||
'welcomeMsg' => '', -- ''= use default. Change to customize.
|
||||
'dialNumber' => '', -- The main number to call into. Optional.
|
||||
'voiceBridge' => '', -- PIN to join voice. Optional.
|
||||
'voiceBridge' => '12345', -- 5 digit PIN to join voice conference. Required.
|
||||
'webVoice' => '', -- Alphanumeric to join voice. Optional.
|
||||
'logoutUrl' => '', -- Default in bigbluebutton.properties. Optional.
|
||||
'maxParticipants' => '-1', -- Optional. -1 = unlimitted. Not supported in BBB. [number]
|
||||
@ -574,4 +574,4 @@ class BigBlueButton {
|
||||
|
||||
} // END OF BIGBLUEBUTTON CLASS
|
||||
|
||||
?>
|
||||
?>
|
||||
|
@ -65,7 +65,7 @@ $creationParams = array(
|
||||
'moderatorPw' => 'mp', // Match this value in getJoinMeetingURL() to join as moderator.
|
||||
'welcomeMsg' => '', // ''= use default. Change to customize.
|
||||
'dialNumber' => '', // The main number to call into. Optional.
|
||||
'voiceBridge' => '', // PIN to join voice. Optional.
|
||||
'voiceBridge' => '', // 5 digit PIN to join voice bridge. Required.
|
||||
'webVoice' => '', // Alphanumeric to join voice. Optional.
|
||||
'logoutUrl' => '', // Default in bigbluebutton.properties. Optional.
|
||||
'maxParticipants' => '-1', // Optional. -1 = unlimitted. Not supported in BBB. [number]
|
||||
@ -204,4 +204,4 @@ $result = $bbb->createMeetingWithXmlResponseArray($creationParams);
|
||||
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
||||
|
Loading…
Reference in New Issue
Block a user