moodle/lib/defaults.php
2002-11-20 15:16:03 +00:00

28 lines
830 B
PHP

<?PHP // $Id$
// This file is generally only included from admin/index.php
// It defines default values for any important configuration variables
$defaults = array (
"theme" => "standard",
"lang" => "en",
"langdir" => "LTR",
"locale" => "en",
"auth" => "email",
"smtphosts" => "",
"smtpuser" => "",
"smtppass" => "",
"gdversion" => 1,
"longtimenosee" => 100,
"zip" => "/usr/bin/zip",
"unzip" => "/usr/bin/unzip",
"slasharguments" => 1,
"htmleditor" => true,
"proxyhost" => "",
"proxyport" => "",
"maxeditingtime" => 1800,
"guestloginbutton" => 1
);
?>