forked from moodle/moodle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefaults.php
50 lines (47 loc) · 1.61 KB
/
defaults.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?PHP // $Id$
// This file is generally only included from admin/index.php
// It defines default values for any important configuration variables
$defaults = array (
"auth" => "email",
"allowunenroll" => true,
"cachetext" => 60,
"changepassword" => true,
"country" => "",
"debug" => 7,
"deleteunconfirmed" => 168,
"enablerssfeeds" => 0,
"filteruploadedfiles" => true,
"forcelogin" => false,
"fullnamedisplay" => "firstname lastname",
"framename" => "_top",
"frontpage" => 0,
"gdversion" => 1,
"guestloginbutton" => 1,
"htmleditor" => true,
"lang" => "en",
"langmenu" => 1,
"langlist" => "",
"locale" => "en",
"loglifetime" => 0,
"longtimenosee" => 100,
"maxbytes" => 0,
"maxeditingtime" => 1800,
"opentogoogle" => false,
"prefix" => "",
"proxyhost" => "",
"proxyport" => "",
"secureforms" => false,
"sessioncookie" => "",
"sessiontimeout" => 7200,
"slasharguments" => 1,
"smtphosts" => "",
"smtppass" => "",
"smtpuser" => "",
"teacherassignteachers" => true,
"textfilters" => "mod/glossary/dynalink.php",
"timezone" => 99,
"theme" => "standard",
"unzip" => "",
"zip" => ""
);
?>