Chamilo is a learning management system focused on ease of use and accessibility
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
chamilo-lms/plugin/openmeetings/start.php

70 lines
2.1 KiB

<?php
/**
* This script initiates a video conference session
*/
/**
* Initialization
*/
$course_plugin = 'openmeetings'; //needed in order to load the plugin lang variables
require_once dirname(__FILE__).'/config.php';
$tool_name = get_lang('Videoconference');
$tpl = new Template($tool_name);
$om = new \Chamilo\Plugin\OpenMeetings\OpenMeetings();
if ($om->isServerRunning()) {
if (isset($_GET['launch']) && $_GET['launch'] == 1) {
$meeting_params = array();
$meeting_params['meeting_name'] = 'C'.api_get_course_id().'-'.api_get_session_id();
$meetings = $om->getCourseMeetings();
$selectedMeeting = array();
/*
// Select the meeting with more participantCount.
if (!empty($meetings)) {
$max = 0;
foreach ($meetings as $meeting) {
if ($meeting['participantCount'] > $max) {
$selectedMeeting = $meeting;
$max = $meeting['participantCount'];
}
}
}
*/
// Check for the first meeting available with status = 1
// (there should be only one at a time, as createMeeting checks for that first
if (!empty($meetings)) {
foreach ($meetings as $meeting) {
if ($meeting['status'] == 1) {
$selectedMeeting = $meeting;
}
}
}
if (!empty($selectedMeeting)) {
$url = $om->joinMeeting($selectedMeeting['id']);
if ($url) {
header('location: '.$url);
exit;
}
} else {
if ($om->isTeacher()) {
$om->createMeeting($meeting_params);
exit;
} else {
$url = 'listing.php';
header('location: '.$url);
exit;
}
}
} else {
$url = 'listing.php';
header('location: '.$url);
exit;
}
} else {
$message = Display::return_message(get_lang('ServerIsNotRunning'), 'warning');
}
$tpl->assign('message', $message);
$tpl->display_one_col_template();