-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathtsugi_settings.php
More file actions
34 lines (21 loc) · 902 Bytes
/
tsugi_settings.php
File metadata and controls
34 lines (21 loc) · 902 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
31
32
33
<?php
/**
* These are some configuration variables that are not secure / sensitive
*
* This file is included at the end of tsugi/config.php
*/
// This is how the system will refer to itself.
$CFG->servicename = 'PY4E';
$CFG->servicedesc = 'OER materials for Python for Everybody textbook';
// Default theme
$CFG->context_title = "Python for Everybody";
// $CFG->setExtension('lessons2_enable', true);
// $CFG->lessons = $CFG->dirroot.'/../lessons.json';
// $CFG->setExtension('lessons2_enable', true);
$CFG->lessons = $CFG->dirroot.'/../lessons-items.json';
$CFG->youtube_playlist = 'PLlRFEj9H3Oj7Bp8-DfGpfAfDBiblRfl5p';
$CFG->youtube_url = $CFG->apphome . '/mod/youtube/';
$CFG->tdiscus = $CFG->apphome . '/mod/tdiscus/';
$CFG->giftquizzes = $CFG->dirroot.'/../py4e-private/quiz';
$CFG->sessionlifetime = 18*60*60; // 18 hours
$CFG->google_login_redirect = $CFG->apphome . "/login";