function theme_bbb_meeting in BigBlueButton 6
Same name and namespace in other branches
- 8 modules/bbb_node/bbb_node.module \theme_bbb_meeting()
- 7 bbb.module \theme_bbb_meeting()
Theme inline meeting
2 theme calls to theme_bbb_meeting()
- 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
- ./
bbb.module, line 767 - Big Blue Button - Enables universities and colleges to deliver a high-quality learning experience.
Code
function theme_bbb_meeting($meeting, $mode = 'attend', $height = '580px', $width = '100%') {
$output .= '<iframe src="' . url('node/' . $meeting->nid . '/redirect/' . $mode, array(
'absolute' => TRUE,
)) . '" style="height:' . $height . ';width:' . $width . ';border:0;"></iframe>';
return $output;
}