mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 14:27:22 +01:00
209 lines
5.2 KiB
HTML
209 lines
5.2 KiB
HTML
<FORM METHOD="post" action="config.php" NAME="form">
|
|
|
|
<TABLE cellpadding=9 cellspacing=0 >
|
|
<TR VALIGN=TOP>
|
|
<TD ALIGN=RIGHT><P>lang:</TD>
|
|
<TD>
|
|
<? choose_from_menu (get_list_of_languages(), "lang", $config->lang, "", "", ""); ?>
|
|
</TD>
|
|
<TD>
|
|
<? print_string("configlang") ?>
|
|
</TD>
|
|
</TR>
|
|
<TR VALIGN=TOP>
|
|
<TD ALIGN=RIGHT><P>langdir:</TD>
|
|
<TD>
|
|
<? unset($options);
|
|
$options["LTR"] = get_string("langltr");
|
|
$options["RTL"] = get_string("langrtl");
|
|
|
|
choose_from_menu ($options, "langdir", $config->langdir, "", "", "");
|
|
?>
|
|
</TD>
|
|
<TD>
|
|
<? print_string("configlangdir") ?>
|
|
</TD>
|
|
</TR>
|
|
<TR VALIGN=TOP>
|
|
<TD ALIGN=RIGHT><P>locale:</TD>
|
|
<TD>
|
|
<INPUT NAME=locale TYPE=text SIZE=10 VALUE="<?=$config->locale?>">
|
|
</TD>
|
|
<TD>
|
|
<? print_string("configlocale") ?>
|
|
</TD>
|
|
</TR>
|
|
<tr valign=top>
|
|
<td align=right><P>country:</td>
|
|
<td><? choose_from_menu ($COUNTRIES, "country", $config->country, get_string("selectacountry"), "", "") ?>
|
|
</td>
|
|
<TD>
|
|
<? print_string("configcountry") ?>
|
|
</TD>
|
|
</tr>
|
|
<TR VALIGN=TOP>
|
|
<TD ALIGN=RIGHT><P>smtphosts:</TD>
|
|
<TD>
|
|
<INPUT NAME=smtphosts TYPE=text SIZE=30 VALUE="<?=$config->smtphosts?>">
|
|
</TD>
|
|
<TD>
|
|
<? print_string("configsmtphosts") ?>
|
|
</TD>
|
|
</TR>
|
|
<TR VALIGN=TOP>
|
|
<TD ALIGN=RIGHT><P>smtpuser:</TD>
|
|
<TD>
|
|
<INPUT NAME=smtpuser TYPE=text SIZE=10 VALUE="<?=$config->smtpuser?>">
|
|
</TD>
|
|
<TD ROWSPAN=2>
|
|
<? print_string("configsmtpuser") ?>
|
|
</TD>
|
|
</TR>
|
|
<TR VALIGN=TOP>
|
|
<TD ALIGN=RIGHT><P>smtppass:</TD>
|
|
<TD>
|
|
<INPUT NAME=smtppass TYPE=text SIZE=10 VALUE="<?=$config->smtppass?>">
|
|
</TD>
|
|
</TR>
|
|
<TR VALIGN=TOP>
|
|
<TD ALIGN=RIGHT><P>gdversion:</TD>
|
|
<TD>
|
|
<? unset($options);
|
|
$options[0] = get_string("gdnot");
|
|
$options[1] = get_string("gd1");
|
|
$options[2] = get_string("gd2");
|
|
|
|
$installed = check_gd_version();
|
|
|
|
choose_from_menu ($options, "gdversion", $installed, "", "", "");
|
|
?>
|
|
</TD>
|
|
<TD>
|
|
<? print_string("configgdversion") ?>
|
|
</TD>
|
|
</TR>
|
|
<TR VALIGN=TOP>
|
|
<TD ALIGN=RIGHT><P>htmleditor:</TD>
|
|
<TD>
|
|
<? unset($options);
|
|
$options[0] = get_string("allownot");
|
|
$options[1] = get_string("allow");
|
|
choose_from_menu ($options, "htmleditor", $config->htmleditor, "", "", "");
|
|
?>
|
|
</TD>
|
|
<TD>
|
|
<? print_string("confightmleditor") ?>
|
|
</TD>
|
|
</TR>
|
|
<TR VALIGN=TOP>
|
|
<TD ALIGN=RIGHT><P>maxeditingtime:</TD>
|
|
<TD>
|
|
<? $options[3600] = get_string("numminutes", "", 60);
|
|
$options[2700] = get_string("numminutes", "", 45);
|
|
$options[1800] = get_string("numminutes", "", 30);
|
|
$options[900] = get_string("numminutes", "", 15);
|
|
$options[300] = get_string("numminutes", "", 5);
|
|
$options[60] = get_string("numminutes", "", 1);
|
|
|
|
choose_from_menu ($options, "maxeditingtime", $config->maxeditingtime, "", "", "");
|
|
unset($options);
|
|
?>
|
|
</TD>
|
|
<TD>
|
|
<? print_string("configmaxeditingtime") ?>
|
|
</TD>
|
|
</TR>
|
|
<TR VALIGN=TOP>
|
|
<TD ALIGN=RIGHT><P>longtimenosee:</TD>
|
|
<TD>
|
|
<? $options[1000] = get_string("numdays", "", 1000);
|
|
$options[365] = get_string("numdays", "", 365);
|
|
$options[180] = get_string("numdays", "", 180);
|
|
$options[150] = get_string("numdays", "", 150);
|
|
$options[120] = get_string("numdays", "", 120);
|
|
$options[90] = get_string("numdays", "", 90);
|
|
$options[60] = get_string("numdays", "", 60);
|
|
$options[30] = get_string("numdays", "", 30);
|
|
$options[7] = get_string("numdays", "", 7);
|
|
|
|
choose_from_menu ($options, "longtimenosee", $config->longtimenosee, "", "", "");
|
|
unset($options);
|
|
?>
|
|
</TD>
|
|
<TD>
|
|
<? print_string("configlongtimenosee") ?>
|
|
</TD>
|
|
</TR>
|
|
<TR VALIGN=TOP>
|
|
<TD ALIGN=RIGHT><P>zip:</TD>
|
|
<TD>
|
|
<INPUT name=zip TYPE=text SIZE=30 VALUE="<?=$config->zip?>">
|
|
</TD>
|
|
<TD>
|
|
<? print_string("configzip") ?>
|
|
</TD>
|
|
</TR>
|
|
<TR VALIGN=TOP>
|
|
<TD ALIGN=RIGHT><P>unzip:</TD>
|
|
<TD>
|
|
<INPUT name=unzip TYPE=text SIZE=30 VALUE="<?=$config->unzip?>">
|
|
</TD>
|
|
<TD>
|
|
<? print_string("configunzip") ?>
|
|
</TD>
|
|
</TR>
|
|
<TR VALIGN=TOP>
|
|
<TD ALIGN=RIGHT><P>slasharguments:</TD>
|
|
<TD>
|
|
<? $options[0] = "file.php?file=/pic.jpg";
|
|
$options[1] = "file.php/pic.jpg";
|
|
|
|
$installed = check_gd_version();
|
|
|
|
choose_from_menu ($options, "slasharguments", $config->slasharguments, "", "", "");
|
|
unset($options);
|
|
?>
|
|
</TD>
|
|
<TD>
|
|
<? print_string("configslasharguments") ?>
|
|
</TD>
|
|
</TR>
|
|
<TR VALIGN=TOP>
|
|
<TD ALIGN=RIGHT><P>proxyhost:</TD>
|
|
<TD>
|
|
<INPUT name=proxyhost TYPE=text SIZE=30 VALUE="<?=$config->proxyhost?>">
|
|
</TD>
|
|
<TD ROWSPAN=2>
|
|
<? print_string("configproxyhost") ?>
|
|
</TD>
|
|
</TR>
|
|
<TR VALIGN=TOP>
|
|
<TD ALIGN=RIGHT><P>proxyport:</TD>
|
|
<TD>
|
|
<INPUT name=proxyport TYPE=text SIZE=5 VALUE="<?=$config->proxyport?>">
|
|
</TD>
|
|
</TR>
|
|
<TR VALIGN=TOP>
|
|
<TD ALIGN=RIGHT><P>debug:</TD>
|
|
<TD>
|
|
<? $options[7] = get_string("no");
|
|
$options[15] = get_string("yes");
|
|
|
|
choose_from_menu ($options, "debug", $config->debug, "", "", "");
|
|
unset($options);
|
|
?>
|
|
</TD>
|
|
<TD>
|
|
<? print_string("configdebug") ?>
|
|
</TD>
|
|
</TR>
|
|
|
|
|
|
<TR>
|
|
<TD COLSPAN=3 ALIGN=CENTER>
|
|
<INPUT TYPE="submit" VALUE="<? print_string("savechanges") ?>"></TD>
|
|
</TR>
|
|
</TABLE>
|
|
|
|
</FORM>
|