adding some strings
[moodle-linuxchix.git] / mod / hotpot / config.html
blob096b72d3e51bdd66ee7ff771aa78df05ee400f19
1 <form method="post" action="module.php" id="form">
2 <input type="hidden" name="sesskey" value="<?PHP print isset($USER->sesskey) ? $USER->sesskey : '' ?>" />
3 <div>
4 <table cellpadding="9" cellspacing="0">
5 <tr valign="top">
6 <td align="right">hotpot_showtimes:</td>
7 <td><?PHP
8 unset($choices);
9 $choices["0"] = get_string("no");
10 $choices["1"] = get_string("yes");
11 choose_from_menu ($choices, "hotpot_showtimes", $CFG->hotpot_showtimes, "");
12 ?></td>
13 <td><?PHP print_string("configshowtimes", "hotpot") ?></td>
14 </tr>
15 <tr valign="top">
16 <td align="right">hotpot_excelencodings:</td>
17 <td><input name="hotpot_excelencodings" type="text" size="30" value="<?PHP p($CFG->hotpot_excelencodings) ?>" /></td>
18 <td><?PHP print_string("configexcelencodings", "hotpot") ?></td>
19 </tr>
20 <tr>
21 <td colspan="3" align="center"><input type="submit" value="<?PHP print_string("savechanges") ?>" /></td>
22 </tr>
23 </table>
24 </div>
25 </form>