function bbb_api_endMeeting in BigBlueButton 7
1 call to bbb_api_endMeeting()
- bbb_meeting_end in ./
bbb.module - Redirect to big blue button instance; Menu callback
File
- includes/
api.bbb.inc, line 152 - BigBlueButton - Enables universities and colleges to deliver a high-quality learning experience.
Code
function bbb_api_endMeeting($params) {
$response = bbb_api_call($params, 'end');
if (isset($response->returncode) && $response->returncode == 'SUCCESS') {
unset($response->returncode);
return $response;
}
else {
return FALSE;
}
}