moodle/mod/hotpot/config.html

26 lines
1.0 KiB
HTML

<form method="post" action="module.php" id="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">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">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>