mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 14:27:22 +01:00
271 lines
8.8 KiB
HTML
271 lines
8.8 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->display)) {
|
|
$form->display = 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;
|
|
}
|
|
|
|
?>
|
|
<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"><strong><?php print_string("choicetext","choice") ?>:</strong><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
|
|
$standardblanks = 10;
|
|
$count = 0;
|
|
if ($options = get_records_menu('choice_options','choiceid', $form->instance, 'id', 'id,text')) {
|
|
foreach ($options as $id => $text) {
|
|
$count++;
|
|
?>
|
|
<tr valign=top>
|
|
<td align="right"><strong><?php echo get_string("choice","choice").' '.$count; ?>:</strong></td>
|
|
<td>
|
|
<input type="text" name="oldoption<?php p($id) ?>" size="60" value="<?php p($text) ?>" id="oldoption<?php p($id) ?>" />
|
|
<?php helpbutton("options", get_string("modulenameplural", "choice"), "choice") ?>
|
|
</td>
|
|
</tr>
|
|
<?php
|
|
}
|
|
$standardblanks = 2;
|
|
}
|
|
for ($i=1; $i<=$standardblanks; $i++) {
|
|
$count++;
|
|
?>
|
|
<tr valign=top>
|
|
<td align="right"><strong><?php echo get_string("choice","choice").' '.$count; ?>:</strong></td>
|
|
<td>
|
|
<input type="text" name="newoption<?php p($i) ?>" size="60" value="" id="newoption<?php p($i) ?>">
|
|
<?php helpbutton("options", get_string("modulenameplural", "choice"), "choice") ?>
|
|
</td>
|
|
</tr>
|
|
<?php
|
|
}
|
|
?>
|
|
|
|
<tr valign="top">
|
|
<td align="right"><strong><?php print_string("timerestrict", "choice") ?>:</strong></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>
|
|
|
|
<script type="text/javascript">
|
|
function lockprivacy() { /* lockoptions() doesn't work with select's so use this method instead.*/
|
|
if (document.form.release.options[0].selected) {
|
|
lockoption('form', 'publish');
|
|
} else {
|
|
unlockoption('form', 'publish');
|
|
}
|
|
return(true);
|
|
}
|
|
</script>
|
|
<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", "", "return lockprivacy()");
|
|
?>
|
|
<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 />
|
|
<input type="hidden" name="hpublish" value="0" />
|
|
</td>
|
|
</tr>
|
|
|
|
|
|
<tr valign="top">
|
|
<td align="right"><strong><?php print_string("allowupdate","choice") ?>:</strong></td>
|
|
<td>
|
|
<?php
|
|
$menuoptions[0] = get_string("no");
|
|
$menuoptions[1] = get_string("yes");
|
|
choose_from_menu($menuoptions, "allowupdate", "$form->allowupdate", "");
|
|
?>
|
|
<br />
|
|
</td>
|
|
</tr>
|
|
|
|
|
|
<tr valign="top">
|
|
<td align="right"><strong><?php print_string("showunanswered","choice") ?>:</strong></td>
|
|
<td>
|
|
<?php
|
|
$menuoptions[0] = get_string("no");
|
|
$menuoptions[1] = get_string("yes");
|
|
choose_from_menu($menuoptions, "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>
|