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/main/conference/index.php

15 lines
539 B

<?php
/* See license terms in /license.txt */
/**
* Generates the HTML page containing the iframe that loads the videoconference's Flash plugin
*/
require_once '../inc/global.inc.php';
api_protect_course_script();
// Only allow conference or classroom modes. Others are likely to be attacks
if ($_GET['type'] == 'conference' or $_GET['type'] == 'classroom') {
$_SESSION["roomType"] = $_GET['type'];
}
?>
<span align="center">
<iframe frameborder="0" scrolling="no" width="100%" height="100%" src="videoconference.php"></iframe>
</span>