mirror of
https://github.com/moodle/moodle.git
synced 2025-01-21 23:48:45 +01:00
76 lines
2.5 KiB
HTML
76 lines
2.5 KiB
HTML
<FORM name="theform" method="post" <?php echo $onsubmit ?> action="question.php">
|
|
<CENTER>
|
|
<TABLE cellpadding=5>
|
|
<TR valign=top>
|
|
<TD align=right><P><B><?php print_string("category", "quiz") ?>:</B></P></TD>
|
|
<TD>
|
|
<?PHP echo $categories[$question->category]; ?>
|
|
<input type="hidden" name="category" value="<?PHP echo "$question->category"; ?>">
|
|
</TD>
|
|
</TR>
|
|
<TR valign=top>
|
|
<TD align=right><P><B><?php print_string("questionname", "quiz") ?>:</B></P></TD>
|
|
<TD>
|
|
<?PHP
|
|
if (empty($question->name)) {
|
|
$question->name = get_string("randomsamatch", "quiz");
|
|
}
|
|
?>
|
|
<INPUT type="text" name="name" size=40 value="<?php p($question->name) ?>">
|
|
<?php if (isset($err["name"])) formerr($err["name"]); ?>
|
|
</TD>
|
|
</TR>
|
|
<TR valign=top>
|
|
<TD align=right><P><B><?php print_string("introduction", "quiz") ?>:</B></P></TD>
|
|
<TD>
|
|
<?php if (isset($err["questiontext"])) {
|
|
formerr($err["questiontext"]);
|
|
echo "<BR \>";
|
|
}
|
|
if (empty($question->questiontext)) {
|
|
$question->questiontext = get_string("randomsamatchintro", "quiz");
|
|
}
|
|
print_textarea($usehtmleditor, 15, 60, 630, 300, "questiontext", $question->questiontext);
|
|
if ($usehtmleditor) {
|
|
helpbutton("richtext", get_string("helprichtext"), "moodle");
|
|
} else {
|
|
helpbutton("text", get_string("helptext"), "moodle");
|
|
}
|
|
?>
|
|
</TD>
|
|
</TR>
|
|
<TR valign=top>
|
|
<TD align=right><P><B><?php print_string("randomsamatchnumber", "quiz") ?>:</B></P></TD>
|
|
<TD>
|
|
<?php
|
|
if ($numberavailable < 2) {
|
|
echo "ERROR";
|
|
$maxrandom=2;
|
|
} else if ($numberavailable < 6) {
|
|
$maxrandom = $numberavailable;
|
|
} else {
|
|
$maxrandom = QUIZ_MAX_NUMBER_ANSWERS;
|
|
}
|
|
|
|
for ($i=2;$i<=$maxrandom;$i++) {
|
|
$menu[$i] = $i;
|
|
}
|
|
choose_from_menu($menu, "choose", "$options->choose", "");
|
|
unset($menu);
|
|
?>
|
|
</TD>
|
|
</TR>
|
|
</TABLE>
|
|
|
|
<INPUT type="hidden" name=id value="<?php p($question->id) ?>">
|
|
<INPUT type="hidden" name=qtype value="<?php p($question->qtype) ?>">
|
|
<INPUT type="submit" value="<?php print_string("savechanges") ?>">
|
|
|
|
</CENTER>
|
|
</FORM>
|
|
<?php
|
|
if ($usehtmleditor) {
|
|
print_richedit_javascript("theform", "questiontext", "no");
|
|
}
|
|
?>
|