mirror of
https://github.com/moodle/moodle.git
synced 2025-02-15 21:36:58 +01:00
- preventlate works - dates can be set to not be used - optional assignment fields all getting passed to second screen now 8-I
190 lines
7.0 KiB
HTML
190 lines
7.0 KiB
HTML
<?php
|
|
require_once("$CFG->dirroot/mod/assignment/lib.php");
|
|
|
|
if (empty($form->name)) {
|
|
$form->name = "";
|
|
}
|
|
if (empty($form->description)) {
|
|
$form->description = "";
|
|
}
|
|
if (empty($form->format)) {
|
|
$form->format = "";
|
|
}
|
|
if (empty($form->assignmenttype)) {
|
|
$form->assignmenttype = "uploadsingle";
|
|
}
|
|
if (empty($form->resubmit)) {
|
|
$form->resubmit = "";
|
|
}
|
|
if (!isset($form->grade)) {
|
|
$form->grade = 100;
|
|
}
|
|
if (!isset($form->timedue)) {
|
|
$form->timedue = time()+7*24*3600;
|
|
}
|
|
if (!isset($form->timeavailable)) {
|
|
$form->timeavailable = time();
|
|
}
|
|
if (!isset($form->preventlate)) {
|
|
$form->preventlate = 0;
|
|
}
|
|
if (!isset($form->grade)) {
|
|
$form->grade = 100;
|
|
}
|
|
if (empty($form->maxbytes)) {
|
|
$form->maxbytes = $CFG->assignment_maxbytes;
|
|
}
|
|
if (empty($form->timedue)) {
|
|
$form->timedue = "";
|
|
}
|
|
|
|
?>
|
|
<script type="text/javascript" language="javascript">
|
|
var dueitems = ['dueday','duemonth','dueyear','duehour', 'dueminute', 'preventlate'];
|
|
var availableitems = ['availableday','availablemonth','availableyear','availablehour', 'availableminute'];
|
|
</script>
|
|
|
|
<form name="form" method="post" action="../mod/assignment/details.php">
|
|
<table cellpadding="5">
|
|
<tr valign="top">
|
|
<td align="right"><b><?php print_string("assignmentname", "assignment") ?>:</b></td>
|
|
<td>
|
|
<input type="text" name="name" size=60 value="<?php p($form->name) ?>">
|
|
</td>
|
|
</tr>
|
|
<tr valign="top">
|
|
<td align="right"><b><?php print_string("description", "assignment") ?>:</b>
|
|
<br /><br />
|
|
<?php
|
|
helpbutton("writing", get_string("helpwriting"), "moodle", true, true);
|
|
echo "<br />";
|
|
helpbutton("questions", get_string("helpquestions"), "moodle", true, true);
|
|
echo "<br />";
|
|
if ($usehtmleditor) {
|
|
helpbutton("richtext", get_string("helprichtext"), "moodle", true, true);
|
|
} else {
|
|
emoticonhelpbutton("form", "description");
|
|
}
|
|
?>
|
|
</td>
|
|
<td>
|
|
<?php
|
|
print_textarea($usehtmleditor, 20, 60, 680, 400, "description", $form->description);
|
|
|
|
if ($usehtmleditor) {
|
|
echo '<input type="hidden" name="format" value="'.FORMAT_HTML.'" />';
|
|
} else {
|
|
echo '<div align="right">';
|
|
helpbutton("textformat", get_string("formattexttype"));
|
|
print_string("formattexttype");
|
|
echo ': ';
|
|
if (!$form->format) {
|
|
$form->format = $defaultformat;
|
|
}
|
|
choose_from_menu(format_text_menu(), "format", $form->format, "");
|
|
echo '</div>';
|
|
}
|
|
?>
|
|
</td>
|
|
</tr>
|
|
<tr valign=top>
|
|
<td align="right"><b><?php print_string("grade") ?>:</b></td>
|
|
<td>
|
|
<?php
|
|
print_grade_menu($course->id, "grade", "$form->grade");
|
|
?>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr valign=top>
|
|
<td align="right"><b><?php print_string("availabledate","assignment") ?>:</b></td>
|
|
<td>
|
|
<input name="availableenable" type="checkbox" value="1" alt="<?php print_string('availabledate', 'assignment') ?>" onclick="return lockoptions('form', 'availableenable', availableitems)" <?php if ($form->timeavailable) echo 'checked="checked"' ?> />
|
|
<?php
|
|
print_date_selector("availableday", "availablemonth", "availableyear", $form->timeavailable);
|
|
echo " - ";
|
|
print_time_selector("availablehour", "availableminute", $form->timeavailable);
|
|
?>
|
|
<input type="hidden" name="havailableday" value="0" />
|
|
<input type="hidden" name="havailablemonth" value="0" />
|
|
<input type="hidden" name="havailableyear" value="0" />
|
|
<input type="hidden" name="havailablehour" value="0" />
|
|
<input type="hidden" name="havailableminute" value="0" />
|
|
</td>
|
|
</tr>
|
|
|
|
<tr valign=top>
|
|
<td align="right"><b><?php print_string("duedate", "assignment") ?>:</b></td>
|
|
<td>
|
|
<input name="dueenable" type="checkbox" value="1" alt="<?php print_string('duedate', 'assignment') ?>" onclick="return lockoptions('form', 'dueenable', dueitems)" <?php if ($form->timedue) echo 'checked="checked"' ?> />
|
|
<?php
|
|
print_date_selector("dueday", "duemonth", "dueyear", $form->timedue);
|
|
echo " - ";
|
|
print_time_selector("duehour", "dueminute", $form->timedue);
|
|
?>
|
|
<input type="hidden" name="hdueday" value="0" />
|
|
<input type="hidden" name="hduemonth" value="0" />
|
|
<input type="hidden" name="hdueyear" value="0" />
|
|
<input type="hidden" name="hduehour" value="0" />
|
|
<input type="hidden" name="hdueminute" value="0" />
|
|
</td>
|
|
</tr>
|
|
|
|
<tr valign="top">
|
|
<td> </td>
|
|
<td><?php print_string('preventlate', 'assignment') ?>:
|
|
<?php
|
|
$options[0] = get_string('no'); $options[1] = get_string('yes');
|
|
choose_from_menu($options, 'preventlate', $form->preventlate, '');
|
|
?>
|
|
<input type="hidden" name="hpreventlate" value="0" />
|
|
</td>
|
|
</tr>
|
|
|
|
<tr valign="top">
|
|
<td colspan="2"> </td>
|
|
</tr>
|
|
|
|
<tr valign="top">
|
|
<td align="right"><b><?php print_string("assignmenttype", "assignment") ?>:</b></td>
|
|
<td>
|
|
<?php
|
|
$ASSIGNMENT_TYPES = assignment_types();
|
|
choose_from_menu($ASSIGNMENT_TYPES, 'assignmenttype', $form->assignmenttype, '');
|
|
helpbutton('assignment/types', get_string('assignmenttype', 'assignment'), 'moodle');
|
|
?>
|
|
</td>
|
|
</tr>
|
|
|
|
</table>
|
|
<br />
|
|
<center>
|
|
<!-- <input type="hidden" name=grade value="<?php p($form->grade) ?>" /> -->
|
|
<input type="hidden" name="resubmit" value="<?php p($form->resubmit) ?>" />
|
|
<input type="hidden" name="emailteachers" value="<?php p($form->emailteachers) ?>" />
|
|
<input type="hidden" name="maxbytes" value="<?php p($form->maxbytes) ?>" />
|
|
<input type="hidden" name="var1" value="<?php p($form->var1) ?>" />
|
|
<input type="hidden" name="var2" value="<?php p($form->var2) ?>" />
|
|
<input type="hidden" name="var3" value="<?php p($form->var3) ?>" />
|
|
<input type="hidden" name="var4" value="<?php p($form->var4) ?>" />
|
|
<input type="hidden" name="var5" value="<?php p($form->var5) ?>" />
|
|
<input type="hidden" name="course" value="<?php p($form->course) ?>" />
|
|
<input type="hidden" name="coursemodule" value="<?php p($form->coursemodule) ?>" />
|
|
<input type="hidden" name="section" value="<?php p($form->section) ?>" />
|
|
<input type="hidden" name="module" value="<?php p($form->module) ?>" />
|
|
<input type="hidden" name="modulename" value="<?php p($form->modulename) ?>" />
|
|
<input type="hidden" name="instance" value="<?php p($form->instance) ?>" />
|
|
<input type="hidden" name="mode" value="<?php p($form->mode) ?>" />
|
|
<input type="submit" value="<?php print_string('next') ?> »" />
|
|
<input type="submit" name="cancel" value="<?php print_string('cancel') ?>" />
|
|
</center>
|
|
</form>
|
|
|
|
<script type="text/javascript">
|
|
<?php
|
|
if (!$form->timedue) echo "lockoptions('form','dueenable', dueitems);";
|
|
if (!$form->timeavailable) echo "lockoptions('form','availableenable', availableitems);";
|
|
?>
|
|
</script>
|
|
|