function bbb_create_meeting_id in BigBlueButton 6
Same name and namespace in other branches
- 7 bbb.module \bbb_create_meeting_id()
1 call to bbb_create_meeting_id()
- bbb_init_meeting in ./
bbb.module - Init meeting
File
- ./
bbb.module, line 757 - Big Blue Button - Enables universities and colleges to deliver a high-quality learning experience.
Code
function bbb_create_meeting_id($salt = NULL) {
$private_key = drupal_get_private_key();
return bbb_encode_int($private_key) . $salt;
}