1 <form method=
"post" action=
"module.php" id=
"form">
3 <input type=
"hidden" name=
"sesskey" value=
"<?php echo sesskey(); ?>" />
5 <table cellpadding
="9" cellspacing
="0" >
7 <td align
="right">assignment_maxbytes
:</td
>
9 $choices = get_max_upload_sizes($CFG->maxbytes
);
10 choose_from_menu ($choices, "assignment_maxbytes", $CFG->assignment_maxbytes
, "");
14 <?php print_string("configmaxbytes", "assignment") ?>
19 <td align=
"right">assignment_itemstocount:
</td>
22 $options[ASSIGNMENT_COUNT_WORDS
] = trim(get_string('numwords', ''));
23 $options[ASSIGNMENT_COUNT_LETTERS
] = trim(get_string('numletters', ''));
24 choose_from_menu ($options, 'assignment_itemstocount', $CFG->assignment_itemstocount
, "");
28 <?php print_string("configitemstocount", "assignment") ?>
33 <td colspan=
"3" align=
"center">
34 <input type=
"submit" value=
"<?php print_string("savechanges
") ?>" /></td
>