Ejemplo n.º 1
0
            break;
        case 'publish':
            //$result = $bbb->publish_meeting($_GET['id']);
            break;
        case 'unpublish':
            //$result = $bbb->unpublish_meeting($_GET['id']);
            break;
        default:
            break;
    }
}
$meetings = $bbb->get_course_meetings();
if (!empty($meetings)) {
    $meetings = array_reverse($meetings);
}
$users_online = $bbb->get_users_online_in_current_room();
$status = $bbb->is_server_running();
$meeting_exists = $bbb->meeting_exists(api_get_course_id());
$show_join_button = false;
if ($meeting_exists || $teacher) {
    $show_join_button = true;
}
$tpl->assign('allow_to_edit', $teacher);
$tpl->assign('meetings', $meetings);
$conference_url = api_get_path(WEB_PLUGIN_PATH) . 'bbb/start.php?launch=1&' . api_get_cidreq();
$tpl->assign('conference_url', $conference_url);
$tpl->assign('users_online', $users_online);
$tpl->assign('bbb_status', $status);
$tpl->assign('show_join_button', $show_join_button);
$tpl->assign('message', $message);
$listing_tpl = 'bbb/listing.tpl';