You are here

function theme_bbb_meeting_status in BigBlueButton 8

Same name and namespace in other branches
  1. 6 bbb.module \theme_bbb_meeting_status()
  2. 7 bbb.module \theme_bbb_meeting_status()

Theme meeting status

2 theme calls to theme_bbb_meeting_status()
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 379
Big Blue Button - Enables universities and colleges to deliver a high-quality learning experience.

Code

function theme_bbb_meeting_status($meeting) {

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