Changed voiceBridge parameter from optional to required in PHP library in labs

This commit is contained in:
Fred Dixon 2013-01-18 15:40:18 -05:00
parent efd601c029
commit e075e65cbe
4 changed files with 8 additions and 8 deletions

View File

@ -22,7 +22,7 @@ $creationParams = array(
'moderatorPw' => 'mp', // Match this value in getJoinMeetingURL() to join as moderator. 'moderatorPw' => 'mp', // Match this value in getJoinMeetingURL() to join as moderator.
'welcomeMsg' => '', // ''= use default. Change to customize. 'welcomeMsg' => '', // ''= use default. Change to customize.
'dialNumber' => '', // The main number to call into. Optional. '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. 'webVoice' => '', // Alphanumeric to join voice. Optional.
'logoutUrl' => '', // Default in bigbluebutton.properties. Optional. 'logoutUrl' => '', // Default in bigbluebutton.properties. Optional.
'maxParticipants' => '-1', // Optional. -1 = unlimitted. Not supported in BBB. [number] 'maxParticipants' => '-1', // Optional. -1 = unlimitted. Not supported in BBB. [number]
@ -58,4 +58,4 @@ if ($itsAllGood == true) {
} }
} }
?> ?>

View File

@ -22,7 +22,7 @@ $creationParams = array(
'moderatorPw' => 'mp', // Match this value in getJoinMeetingURL() to join as moderator. 'moderatorPw' => 'mp', // Match this value in getJoinMeetingURL() to join as moderator.
'welcomeMsg' => '', // ''= use default. Change to customize. 'welcomeMsg' => '', // ''= use default. Change to customize.
'dialNumber' => '', // The main number to call into. Optional. '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. 'webVoice' => '', // Alphanumeric to join voice. Optional.
'logoutUrl' => '', // Default in bigbluebutton.properties. Optional. 'logoutUrl' => '', // Default in bigbluebutton.properties. Optional.
'maxParticipants' => '-1', // Optional. -1 = unlimitted. Not supported in BBB. [number] 'maxParticipants' => '-1', // Optional. -1 = unlimitted. Not supported in BBB. [number]
@ -58,4 +58,4 @@ if ($itsAllGood == true) {
} }
} }
?> ?>

View File

@ -153,7 +153,7 @@ class BigBlueButton {
'moderatorPw' => 'mp', -- Set to 'mp' and use 'mp' to join = no user pass required. 'moderatorPw' => 'mp', -- Set to 'mp' and use 'mp' to join = no user pass required.
'welcomeMsg' => '', -- ''= use default. Change to customize. 'welcomeMsg' => '', -- ''= use default. Change to customize.
'dialNumber' => '', -- The main number to call into. Optional. '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. 'webVoice' => '', -- Alphanumeric to join voice. Optional.
'logoutUrl' => '', -- Default in bigbluebutton.properties. Optional. 'logoutUrl' => '', -- Default in bigbluebutton.properties. Optional.
'maxParticipants' => '-1', -- Optional. -1 = unlimitted. Not supported in BBB. [number] 'maxParticipants' => '-1', -- Optional. -1 = unlimitted. Not supported in BBB. [number]
@ -574,4 +574,4 @@ class BigBlueButton {
} // END OF BIGBLUEBUTTON CLASS } // END OF BIGBLUEBUTTON CLASS
?> ?>

View File

@ -65,7 +65,7 @@ $creationParams = array(
'moderatorPw' => 'mp', // Match this value in getJoinMeetingURL() to join as moderator. 'moderatorPw' => 'mp', // Match this value in getJoinMeetingURL() to join as moderator.
'welcomeMsg' => '', // ''= use default. Change to customize. 'welcomeMsg' => '', // ''= use default. Change to customize.
'dialNumber' => '', // The main number to call into. Optional. '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. 'webVoice' => '', // Alphanumeric to join voice. Optional.
'logoutUrl' => '', // Default in bigbluebutton.properties. Optional. 'logoutUrl' => '', // Default in bigbluebutton.properties. Optional.
'maxParticipants' => '-1', // Optional. -1 = unlimitted. Not supported in BBB. [number] 'maxParticipants' => '-1', // Optional. -1 = unlimitted. Not supported in BBB. [number]
@ -204,4 +204,4 @@ $result = $bbb->createMeetingWithXmlResponseArray($creationParams);
</div> </div>
</body> </body>
</html> </html>