You are here

function bbb_create_meeting_id in BigBlueButton 7

Same name and namespace in other branches
  1. 6 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 873
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;
}