function theme_bbb_meeting in BigBlueButton 8
Same name and namespace in other branches
- 6 bbb.module \theme_bbb_meeting()
- 7 bbb.module \theme_bbb_meeting()
Theme inline meeting
3 theme calls to theme_bbb_meeting()
- BBBLoginMeeting::build in modules/
bbb_node/ src/ Plugin/ Block/ BBBLoginMeeting.php - Implements \Drupal\block\BlockBase::build().
- BBBMeetingTypeController::attend in modules/
bbb_node/ src/ Controller/ BBBMeetingTypeController.php - Redirect to big blue button instance; Menu callback
- BBBMeetingTypeController::moderate in modules/
bbb_node/ src/ Controller/ BBBMeetingTypeController.php - Redirect to big blue button instance.
File
- modules/
bbb_node/ bbb_node.module, line 370 - Big Blue Button - Enables universities and colleges to deliver a high-quality learning experience.
Code
function theme_bbb_meeting($meeting) {
/** @var \Drupal\bbb\Service\Theme $theme */
$theme = \Drupal::service('bbb.theme');
return $theme
->meeting($meeting);
}