You are here

function bbb_block_view in BigBlueButton 7

Implements HOOK_block_view().

File

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

Code

function bbb_block_view($delta = '') {
  $block = '';
  switch ($delta) {
    case 'bbb_login_meeting':
      $block = array(
        'subject' => t('Meeting details'),
        'content' => bbb_block_meeting($delta),
      );
      break;
    default:
      break;
  }
  return $block;
}