function theme_bbb_meeting_record in BigBlueButton 7
Same name and namespace in other branches
- 8 modules/bbb_node/bbb_node.module \theme_bbb_meeting_record()
Theme meeting recording
2 theme calls to theme_bbb_meeting_record()
- bbb_node_view in ./
bbb.module - Implement HOOK_node_view().
- theme_bbb_block_meeting in ./
bbb.module - Theme meeting details block
File
- ./
bbb.module, line 906 - Big Blue Button - Enables universities and colleges to deliver a high-quality learning experience.
Code
function theme_bbb_meeting_record($meeting) {
$meeting = $meeting['meeting'];
$output = '';
// Only if the meeting is set to record do we output as such.
if (isset($meeting->record) && $meeting->record) {
$output = '<div class="bbb-meeting-record">' . t('This meeting is set to be recorded.') . '</div>';
}
return $output;
}