moodle/mod/hotpot/config.html
2006-08-09 13:45:49 +00:00

26 lines
1022 B
HTML

<form method="post" action="module.php" name="form">
<INPUT type="hidden" name="sesskey" value="<?PHP print isset($USER->sesskey) ? $USER->sesskey : '' ?>">
<TABLE cellpadding="9" cellspacing="0">
<TR valign="top">
<TD align="right"><P>hotpot_showtimes:</TD>
<TD><?PHP
unset($choices);
$choices["0"] = get_string("no");
$choices["1"] = get_string("yes");
choose_from_menu ($choices, "hotpot_showtimes", $CFG->hotpot_showtimes, "");
?></TD>
<TD><?PHP print_string("configshowtimes", "hotpot") ?></TD>
</TR>
<TR valign=top>
<TD align="right"><P>hotpot_excelencodings:</TD>
<TD><INPUT name=hotpot_excelencodings type=text size=30 value="<?PHP p($CFG->hotpot_excelencodings) ?>"></TD>
<TD><?PHP print_string("configexcelencodings", "hotpot") ?></TD>
</TR>
<TR>
<TD colspan="3" align="center"><INPUT type="submit" value="<?PHP print_string("savechanges") ?>"></TD>
</TR>
</TABLE>
</FORM>