calendar/lib: calendar_set_filters() use pre-fetched context and course recs
[moodle-pu.git] / mod / scorm / config.html
blob8418bbe055383775421fdb295093b16ceea91a32
1 <?php
2 if (!isset($CFG->scorm_frameheight)) {
3 $CFG->scorm_frameheight = '500';
5 if (!isset($CFG->scorm_framewidth)) {
6 $CFG->scorm_framewidth = '100%';
8 ?>
10 <form method="post" action="module.php" id="form">
11 <div>
12 <input type="hidden" name="sesskey" value="<?php echo $USER->sesskey ?>" />
14 <table cellpadding="9" cellspacing="0" >
15 <tr valign="top">
16 <td align="right">scorm_framewidth:</td>
17 <td>
18 <input type="text" name="scorm_framewidth" value="<?php echo $CFG->scorm_framewidth ?>" size="5" />
19 </td>
20 <td>
21 <?php print_string("framewidth", "scorm") ?>
22 </td>
23 </tr>
24 <tr valign="top">
25 <td align="right">scorm_frameheight:</td>
26 <td>
27 <input type="text" name="scorm_frameheight" value="<?php echo $CFG->scorm_frameheight ?>" size="5" />
28 </td>
29 <td>
30 <?php print_string("frameheight", "scorm") ?>
31 </td>
32 </tr>
33 <tr>
34 <td colspan="3" align="center">
35 <input type="submit" value="<?php print_string("savechanges") ?>" />
36 </td>
37 </tr>
38 </table>
39 </div>
40 </form>