moodle/lib/defaults.php
moodler 984a8bf349 Two new language variables implemented.
langmenu  - turns the language menu on and off
langlist  - allows the admin to restrict and/or re-order the available language choices
2003-05-03 06:50:29 +00:00

37 lines
1.1 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",
"changepassword" => true,
"country" => "",
"debug" => 7,
"framename" => "_top",
"gdversion" => 1,
"guestloginbutton" => 1,
"htmleditor" => true,
"lang" => "en",
"langdir" => "LTR",
"langmenu" => 1,
"langhide" => "",
"locale" => "en",
"loglifetime" => 0,
"longtimenosee" => 100,
"maxeditingtime" => 1800,
"prefix" => "",
"proxyhost" => "",
"proxyport" => "",
"sessiontimeout" => 7200,
"slasharguments" => 1,
"smtphosts" => "",
"smtppass" => "",
"smtpuser" => "",
"theme" => "standard",
"unzip" => "",
"zip" => ""
);
?>