-
Notifications
You must be signed in to change notification settings - Fork 226
Expand file tree
/
Copy pathtsugi_settings.php
More file actions
31 lines (24 loc) · 875 Bytes
/
Copy pathtsugi_settings.php
File metadata and controls
31 lines (24 loc) · 875 Bytes
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
30
<?php
$CFG->context_title = "Web Applications for Everybody";
$CFG->tool_folders = array("admin", "../tools", "../mod", "tool");
$CFG->ownername = "WA4E";
$CFG->servicename = "WA4E";
$CFG->owneremail = "drchuck@learnxp.com";
$CFG->providekeys=true;
$CFG->autoapprovekeys='/.+@.+\\.edu/';
$CFG->expire_pii_days = 150; // Three months
$CFG->expire_user_days = 400; // One year
$CFG->expire_context_days = 600; // 1.5 Years
$CFG->expire_tenant_days = 800; // Two years
$CFG->lessons = $CFG->dirroot.'/../lessons-items.json';
$CFG->youtube_playlist = 'PLlRFEj9H3Oj7FHbnXWviqQt0sKEK_hdKX';
$CFG->tdiscus = $CFG->wwwroot . '/tool/tdiscus/';
$CFG->top_menu_callback = function() {
global $CFG;
$buildmenu = $CFG->dirroot.'/../buildmenu.php';
if ( ! file_exists($buildmenu) ) {
return false;
}
require_once $buildmenu;
return buildMenu();
};