本文整理汇总了PHP中quiz_attempt::question_print_comment_fields方法的典型用法代码示例。如果您正苦于以下问题:PHP quiz_attempt::question_print_comment_fields方法的具体用法?PHP quiz_attempt::question_print_comment_fields怎么用?PHP quiz_attempt::question_print_comment_fields使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类quiz_attempt
的用法示例。
在下文中一共展示了quiz_attempt::question_print_comment_fields方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: sesskey
print_header();
print_heading(format_string($attemptobj->get_question($questionid)->name));
/// Process any data that was submitted.
if ($data = data_submitted() and confirm_sesskey()) {
$error = $attemptobj->process_comment($questionid, $data->response['comment'], $data->response['grade']);
/// If success, notify and print a close button.
if (!is_string($error)) {
notify(get_string('changessaved'), 'notifysuccess');
close_window(2, true);
}
/// Otherwise, display the error and fall throug to re-display the form.
notify($error);
}
/// Print the comment form.
echo '<form method="post" class="mform" id="manualgradingform" action="' . $CFG->wwwroot . '/mod/quiz/comment.php">';
$attemptobj->question_print_comment_fields($questionid, 'response');
?>
<div>
<input type="hidden" name="attempt" value="<?php
echo $attemptobj->get_uniqueid();
?>
" />
<input type="hidden" name="question" value="<?php
echo $questionid;
?>
" />
<input type="hidden" name="sesskey" value="<?php
echo sesskey();
?>
" />
</div>