Files
moodle/lib/defaults.php
T
moodler f82c2d428a Modified Greg's work to:
- rename the main_frame variable to framename, because it
       - might have caused some confusion
       - none of the global variables have underscores
  - put the config in the config table, with a default of _top
2003-03-12 07:36:22 +00:00

34 lines
1.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 (
"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,
"changepassword" => true,
"country" => "",
"prefix" => "",
"guestloginbutton" => 1,
"sessiontimeout" => 7200,
"framename" => "_top",
"debug" => 7
);
?>