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

27 lines
615 B

<?php
/* For licensing terms, see /license.txt */
/**
* @package chamilo.main
*/
//Temporal hack to redirect calls to the new web/index.php
header('Location: web/index');
exit;
define('CHAMILO_HOMEPAGE', true);
$language_file = array('courses', 'index');
// Flag forcing the 'current course' reset, as we're not inside a course anymore.
// Maybe we should change this into an api function? an example: CourseManager::unset();
$cidReset = true;
$app = require_once 'main/inc/global.inc.php';
require_once 'main/chat/chat_functions.lib.php';
// The section (for the tabs).
$this_section = SECTION_CAMPUS;