function theme_bbb_block_meeting in BigBlueButton 8
Same name and namespace in other branches
- 6 bbb.module \theme_bbb_block_meeting()
- 7 bbb.module \theme_bbb_block_meeting()
Theme meeting details block
File
- modules/
bbb_node/ bbb_node.module, line 397 - Big Blue Button - Enables universities and colleges to deliver a high-quality learning experience.
Code
function theme_bbb_block_meeting($meeting) {
/** @var \Drupal\bbb\Service\Theme $theme */
$theme = \Drupal::service('bbb.theme');
return $theme
->blockMeeting($meeting);
}