moodle/lib/defaults.php
moodler d8152d04c0 Language direction is now set in the language file, rather than
as a site-level setting.  This currently only affects Arabic but
will affect Hebrew later and maybe others.
2003-10-05 14:05:57 +00:00

40 lines
1.2 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",
"frontpage" => 0,
"gdversion" => 1,
"guestloginbutton" => 1,
"htmleditor" => true,
"lang" => "en",
"langmenu" => 1,
"langlist" => "",
"locale" => "en",
"loglifetime" => 0,
"longtimenosee" => 100,
"maxbytes" => 0,
"maxeditingtime" => 1800,
"prefix" => "",
"proxyhost" => "",
"proxyport" => "",
"secureforms" => false,
"sessiontimeout" => 7200,
"slasharguments" => 1,
"smtphosts" => "",
"smtppass" => "",
"smtpuser" => "",
"teacherassignteachers" => true,
"theme" => "standard",
"unzip" => "",
"zip" => ""
);
?>