function bbb_api_getMeetingInfo in BigBlueButton 7
Same name and namespace in other branches
- 6 includes/api-0.64.bbb.inc \bbb_api_getMeetingInfo()
- 6 includes/api-0.7.bbb.inc \bbb_api_getMeetingInfo()
2 calls to bbb_api_getMeetingInfo()
- bbb_meeting_attend in ./
bbb.module - Redirect to big blue button instance; Menu callback
- bbb_meeting_moderate in ./
bbb.module - Redirect to big blue button instance; Menu callback
File
- includes/
api.bbb.inc, line 183 - BigBlueButton - Enables universities and colleges to deliver a high-quality learning experience.
Code
function bbb_api_getMeetingInfo($params) {
$response = bbb_api_call($params, 'getMeetingInfo');
if (isset($response->returncode) && $response->returncode == 'SUCCESS') {
unset($response->returncode);
return $response;
}
else {
return FALSE;
}
}