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/newscorm/back_compat.inc.php

16 lines
799 B

<?php //$id: $
/**
* This script used to allow compatibility between the New SCORM tool and both
* version 1.6.3 and 1.8 of Dokeos by loading libraries in a different way.
* The switch is now deprecated and this file will be renamed later on to
* something like lp_includes.inc.php
* @package dokeos.learnpath
*/
require_once('../inc/global.inc.php');
require_once(api_get_path(LIBRARY_PATH) . 'database.lib.php');
require_once(api_get_path(LIBRARY_PATH) . 'document.lib.php');
require_once(api_get_path(LIBRARY_PATH) . 'fileDisplay.lib.php');
require_once(api_get_path(LIBRARY_PATH) . 'fileUpload.lib.php'); //replace_dangerous_char()
require_once(api_get_path(LIBRARY_PATH) . 'fileManage.lib.php'); //check_name_exists()
require_once(api_get_path(LIBRARY_PATH) . 'pclzip/pclzip.lib.php');
?>