You are here

function theme_bbb_meeting_record in BigBlueButton 8

Same name and namespace in other branches
  1. 7 bbb.module \theme_bbb_meeting_record()

Theme meeting recording

2 theme calls to theme_bbb_meeting_record()
bbb_node_node_view in modules/bbb_node/bbb_node.module
Implements hook_ENTITY_TYPE_view().
Theme::blockMeeting in src/Service/Theme.php
Theme meeting details block.

File

modules/bbb_node/bbb_node.module, line 388
Big Blue Button - Enables universities and colleges to deliver a high-quality learning experience.

Code

function theme_bbb_meeting_record($meeting) {

  /** @var \Drupal\bbb\Service\Theme $theme */
  $theme = \Drupal::service('bbb.theme');
  return $theme
    ->meetingRecord($meeting);
}