mirror of
https://github.com/moodle/moodle.git
synced 2025-08-04 16:36:37 +02:00

instead of external zip programs. To use the internal PclZip, the config variables "zip" and "unzip" must be left blank. Code for PclZip integration originally from Robert Hetzel, though I've expanded it and modified it a lot. The zip files seem compatible with itself and Windows XP, but I had a compatibility problem trying to unzip a PclZip file using Zip 2.3 on Linux (directories are unpacked as empty files)
33 lines
1,012 B
PHP
33 lines
1,012 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" => "",
|
|
"unzip" => "",
|
|
"slasharguments" => 1,
|
|
"htmleditor" => true,
|
|
"proxyhost" => "",
|
|
"proxyport" => "",
|
|
"maxeditingtime" => 1800,
|
|
"changepassword" => true,
|
|
"country" => "",
|
|
"prefix" => "",
|
|
"guestloginbutton" => 1,
|
|
"sessiontimeout" => 7200,
|
|
"framename" => "_top",
|
|
"debug" => 7
|
|
);
|
|
|
|
?>
|