-
Notifications
You must be signed in to change notification settings - Fork 1
/
wiki.php
29 lines (26 loc) · 921 Bytes
/
wiki.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?php
/**
* Basic config of the lms module
*
* @category YesWiki
* @package lms
* @author Adrien Cheype <[email protected]>
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL 3.0
* @link https://yeswiki.net
*/
if (!defined("WIKINI_VERSION")) {
die("accès direct interdit");
}
// Constants
!defined('LMS_PATH') && define('LMS_PATH', 'tools/lms/');
// Includes
require_once LMS_PATH . 'libs/CourseStructure.php';
require_once LMS_PATH . 'libs/Activity.php';
require_once LMS_PATH . 'libs/Module.php';
require_once LMS_PATH . 'libs/Course.php';
require_once LMS_PATH . 'libs/Learner.php';
require_once LMS_PATH . 'libs/TimeLogs.php'; // to require before following lines
require_once LMS_PATH . 'libs/ExtraActivityLog.php';
require_once LMS_PATH . 'libs/ExtraActivityLogs.php';
require_once LMS_PATH . 'libs/Progresses.php';
require_once LMS_PATH . 'libs/ConditionsState.php';