mirror of
https://github.com/moodle/moodle.git
synced 2025-01-21 07:28:31 +01:00
69 lines
3.0 KiB
PHP
69 lines
3.0 KiB
PHP
<?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',
|
|
"auth_pop3mailbox" => 'INBOX',
|
|
"autologinguests" => 0,
|
|
"allowunenroll" => true,
|
|
"cachetext" => 60,
|
|
"changepassword" => true,
|
|
"country" => "",
|
|
"debug" => 7,
|
|
"deleteunconfirmed" => 168,
|
|
"digestmailtime" => 17,
|
|
"displayloginfailures" => '',
|
|
"enablerssfeeds" => 0,
|
|
"enrol" => 'internal',
|
|
"extendedusernamechars" => false,
|
|
"editorbackgroundcolor" => '#ffffff',
|
|
"editorfontfamily" => 'Times New Roman, Times',
|
|
"editorfontsize" => '',
|
|
"editorkillword" => 1,
|
|
"editorspelling" => 0,
|
|
"editorfontlist" => "Arial:arial,helvetica,sans-serif;Courier New:courier new,courier,monospace;Georgia:georgia,times new roman,times,serif;Tahoma:tahoma,arial,helvetica,sans-serif;Times New Roman:times new roman,times,serif;Verdana:verdana,arial,helvetica,sans-serif;Impact:impact;Wingdings:wingdings",
|
|
"filteruploadedfiles" => true,
|
|
"forcelogin" => false,
|
|
"forceloginforprofiles" => 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,
|
|
"noreplyaddress" => 'noreply@'.$_SERVER['HTTP_HOST'],
|
|
"notifyloginfailures" => '',
|
|
"notifyloginthreshold" => 10,
|
|
"opentogoogle" => false,
|
|
"prefix" => "",
|
|
"proxyhost" => "",
|
|
"proxyport" => "",
|
|
"secureforms" => false,
|
|
"sessioncookie" => "",
|
|
"sessiontimeout" => 7200,
|
|
"slasharguments" => 1,
|
|
"smtphosts" => "",
|
|
"smtppass" => "",
|
|
"smtpuser" => "",
|
|
"style" => "default",
|
|
"teacherassignteachers" => true,
|
|
"template" => "default",
|
|
"textfilters" => "mod/glossary/dynalink.php",
|
|
"timezone" => 99,
|
|
"theme" => "standard",
|
|
"unzip" => "",
|
|
"zip" => ""
|
|
);
|
|
|
|
?>
|