File: config.html

package info (click to toggle)
moodle 1.4.4.dfsg.1-3sarge1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 57,876 kB
  • ctags: 29,496
  • sloc: php: 271,617; sql: 5,084; xml: 702; perl: 638; sh: 403; java: 283; makefile: 42; pascal: 21
file content (23 lines) | stat: -rw-r--r-- 616 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<form method="post" action="module.php" name="form">
<input type="hidden" name="sesskey" value="<?php echo $USER->sesskey ?>">

<table cellpadding=9 cellspacing=0 >
<tr valign=top>
	<td align=right><p>assignment_maxbytes:</td>
    <td><?php
    $choices = get_max_upload_sizes($CFG->maxbytes);
    choose_from_menu ($choices, "assignment_maxbytes", $CFG->assignment_maxbytes, "");
    ?>
    </td>
    <td>
    <?php print_string("configmaxbytes", "assignment") ?>
    </td>
</tr>

<tr>
    <td colspan=3 align=center>
	<input type="submit" value="<?php print_string("savechanges") ?>"></td>
</tr>
</table>

</form>