| [ Index ] |
PHP Cross Reference of Moodle 1.9.3 [Build 15-Oct-2008] |
[Summary view] [Print] [Text view]
1 <?php 2 // This template determines the layout of the manual grading form. It is 3 // included by both by question_print_comment_box method from questionlib.php, 4 // and the print_questions_and_form method from the manual grading report. 5 ?> 6 <table class="que comment"> 7 <tr valign="top"> 8 <td> 9 <b><?php print_string('comment', 'quiz'); ?>: </b> 10 </td> 11 <td> 12 <?php 13 print_textarea($usehtmleditor, 15, 60, 630, 300, $prefix.'[comment]', stripslashes($state->manualcomment)); 14 ?> 15 </td> 16 </tr> 17 <tr valign="top"> 18 <td> 19 <b><?php print_string('grade', 'quiz'); ?>: </b> 20 </td> 21 <td> 22 <input type="text" name="<?php echo $prefix; ?>[grade]" size="2" value="<?php echo $grade; ?>" />/<?php echo $question->maxgrade; ?> 23 </td> 24 </tr> 25 </table>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Wed Jan 14 11:33:29 2009 | Cross-referenced by PHPXref 0.7 |