mirror of
https://github.com/moodle/moodle.git
synced 2025-02-15 21:36:58 +01:00
262 lines
8.5 KiB
HTML
262 lines
8.5 KiB
HTML
<?php
|
|
if (empty($form->name)) {
|
|
$form->name = "";
|
|
}
|
|
if (empty($form->text)) {
|
|
$form->text = "";
|
|
}
|
|
if (empty($form->format)) {
|
|
$form->format = 0;
|
|
}
|
|
if (empty($form->timeopen)) {
|
|
$form->timeopen = "";
|
|
$form->timerestrict = 0;
|
|
} else {
|
|
$form->timerestrict = 1;
|
|
}
|
|
if (empty($form->timeclose)) {
|
|
$form->timeclose = "";
|
|
}
|
|
if (empty($form->publish)) {
|
|
$form->publish = 0;
|
|
}
|
|
if (empty($form->release)) {
|
|
$form->release = 0;
|
|
}
|
|
if (empty($form->allowupdate)) {
|
|
$form->allowupdate = 0;
|
|
}
|
|
if (empty($form->showunanswered)) {
|
|
$form->showunanswered = 0;
|
|
}
|
|
if (!(empty($form->addmorechoices))) {
|
|
error("not submitted!");
|
|
}
|
|
|
|
?>
|
|
<form name="form" method="post" action="mod.php">
|
|
|
|
<table cellpadding="5">
|
|
|
|
<tr valign="top">
|
|
<td align="right"><strong><?php print_string("choicename","choice") ?>:</strong></td>
|
|
<td>
|
|
<input type="text" name="name" size="30" alt="<?php print_string("choicename","choice") ?>" value="<?php p($form->name) ?>" />
|
|
</td>
|
|
</tr>
|
|
|
|
<tr valign="top">
|
|
<td align="right"><b><?php print_string("choicetext","choice") ?>:</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", "text");
|
|
}
|
|
echo "<br />";
|
|
?>
|
|
</td>
|
|
<td>
|
|
<?php
|
|
print_textarea($usehtmleditor, 20, 60, 680, 400, "text", $form->text);
|
|
|
|
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>
|
|
|
|
<?php
|
|
$choiceqs = get_records_menu("choice_answers","choice", $form->instance,"id","id ,answer");
|
|
foreach ($choiceqs as $current=>$answer) {
|
|
?>
|
|
|
|
<tr valign=top>
|
|
<td align=right><p><strong><?php print_string("choice","choice") ?>:</strong></p></td>
|
|
<td>
|
|
<input type="text" name="choiceanswer<?php p($current) ?>" size=60 value="<?php p($answer) ?>" ID="Textq<?php p($current) ?>">
|
|
<?php helpbutton("options", get_string("modulenameplural", "choice"), "choice") ?>
|
|
</td>
|
|
</tr>
|
|
<?php
|
|
}
|
|
for ($i = 1; $i < ($addmore + 5); $i++) {
|
|
?>
|
|
<tr valign=top>
|
|
<td align="right"><p><strong><?php print_string("choice","choice") ?>:</strong></p></td>
|
|
<td>
|
|
<input type="text" name="newanswer<?php p($i) ?>" size=60 value="" ID="Textqm<?php p($current) ?>">
|
|
<?php helpbutton("options", get_string("modulenameplural", "choice"), "choice") ?>
|
|
</td>
|
|
</tr>
|
|
<?php
|
|
}
|
|
?>
|
|
<tr valign="top">
|
|
<td align="right"><p><strong><?php print_string("addmorechoices","choice") ?>:</strong></p></td>
|
|
<td>
|
|
<input name="addmorechoices" type="text" value="0" size="3" />
|
|
<input type="submit" value="add"/>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr valign="top">
|
|
<td align="right"><b><?php print_string("timerestrict", "choice") ?>:</b></td>
|
|
<td>
|
|
<script type="text/javascript">
|
|
var timeitems = ['openday','openmonth','openyear','openhour', 'openminute', 'closeday','closemonth','closeyear','closehour','closeminute'];
|
|
</script>
|
|
|
|
<input name="timerestrict" type="checkbox" value="1" alt="<?php print_string("timerestrict", "choice") ?>" onclick="return lockoptions('form','timerestrict', timeitems)" <?php if ($form->timerestrict) echo 'checked="checked"'; ?> />
|
|
<?php
|
|
helpbutton("timerestrict", get_string("timerestrict","choice"), "choice");
|
|
?>
|
|
</td>
|
|
</tr>
|
|
<tr valign="top">
|
|
<td> </td>
|
|
<td>
|
|
|
|
<table>
|
|
<tr>
|
|
<td align="right"><strong><?php print_string("choiceopen", "choice") ?>:</strong></td>
|
|
<td>
|
|
|
|
<?php
|
|
if (!$form->timeopen and $course->format == "weeks") {
|
|
$form->timeopen = $course->startdate + (($form->section - 1) * 608400);
|
|
}
|
|
print_date_selector("openday", "openmonth", "openyear", $form->timeopen);
|
|
print_time_selector("openhour", "openminute", $form->timeopen);
|
|
?>
|
|
|
|
<input type="hidden" name="hopenday" value="0" />
|
|
<input type="hidden" name="hopenmonth" value="0" />
|
|
<input type="hidden" name="hopenyear" value="0" />
|
|
<input type="hidden" name="hopenhour" value="0" />
|
|
<input type="hidden" name="hopenminute" value="0" />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td align="right"><strong><?php print_string("choiceclose", "choice") ?>:</strong></td>
|
|
<td>
|
|
|
|
<?php
|
|
if (!$form->timeclose and $course->format == "weeks") {
|
|
$form->timeclose = $course->startdate + (($form->section) * 608400);
|
|
}
|
|
print_date_selector("closeday", "closemonth", "closeyear", $form->timeclose);
|
|
print_time_selector("closehour", "closeminute", $form->timeclose);
|
|
?>
|
|
|
|
<input type="hidden" name="hcloseday" value="0" />
|
|
<input type="hidden" name="hclosemonth" value="0" />
|
|
<input type="hidden" name="hcloseyear" value="0" />
|
|
<input type="hidden" name="hclosehour" value="0" />
|
|
<input type="hidden" name="hcloseminute" value="0" />
|
|
|
|
<?php
|
|
if (! $form->timerestrict) {
|
|
echo "<script type=\"text/javascript\">";
|
|
echo "lockoptions('form','timerestrict', timeitems);";
|
|
echo "</script>\n";
|
|
}
|
|
?>
|
|
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr valign="top">
|
|
<td align="right"><strong><?php print_string("displaymode","choice") ?>:</strong></td>
|
|
<td>
|
|
<?php
|
|
require_once("$CFG->dirroot/mod/choice/lib.php");
|
|
choose_from_menu($CHOICE_DISPLAY, "display", "$form->display", "");
|
|
?>
|
|
<br />
|
|
</td>
|
|
</tr>
|
|
|
|
<tr valign="top">
|
|
<td align="right"><strong><?php print_string("publish","choice") ?>:</strong></td>
|
|
<td>
|
|
<?php
|
|
require_once("$CFG->dirroot/mod/choice/lib.php");
|
|
choose_from_menu($CHOICE_RELEASE, "release", "$form->release", "");
|
|
?>
|
|
<br />
|
|
</td>
|
|
</tr>
|
|
|
|
<tr valign="top">
|
|
<td align="right"><strong><?php print_string("privacy","choice") ?>:</strong></td>
|
|
<td>
|
|
<?php
|
|
require_once("$CFG->dirroot/mod/choice/lib.php");
|
|
choose_from_menu($CHOICE_PUBLISH, "publish", "$form->publish", "");
|
|
?>
|
|
<br />
|
|
</td>
|
|
</tr>
|
|
|
|
|
|
<tr valign="top">
|
|
<td align="right"><strong><?php print_string("allowupdate","choice") ?>:</strong></td>
|
|
<td>
|
|
<?php
|
|
$options[0] = get_string("no");
|
|
$options[1] = get_string("yes");
|
|
choose_from_menu($options, "allowupdate", "$form->allowupdate", "");
|
|
?>
|
|
<br />
|
|
</td>
|
|
</tr>
|
|
|
|
|
|
<tr valign="top">
|
|
<td align="right"><strong><?php print_string("showunanswered","choice") ?>:</strong></td>
|
|
<td>
|
|
<?php
|
|
$options[0] = get_string("no");
|
|
$options[1] = get_string("yes");
|
|
choose_from_menu($options, "showunanswered", "$form->showunanswered", "");
|
|
?>
|
|
<br />
|
|
</td>
|
|
</tr>
|
|
<?php print_standard_coursemodule_settings($form); ?>
|
|
</table>
|
|
|
|
<center>
|
|
<input type="hidden" name="course" value="<?php p($form->course) ?>" />
|
|
<input type="hidden" name="sesskey" value="<?php p($form->sesskey) ?>" />
|
|
<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("savechanges") ?>" />
|
|
<input type="submit" name="cancel" value="<?php print_string("cancel") ?>" />
|
|
</center>
|
|
</form>
|