AC_4897, AC_4898, AC_4899: Multifile uploader fixes.
[acontent.git] / docs / themes / default / tests / create_edit_question_matchingdd.tmpl.php
1 <?php\r
2 /************************************************************************/\r
3 /* AContent                                                             */\r
4 /************************************************************************/\r
5 /* Copyright (c) 2010                                                   */\r
6 /* Inclusive Design Institute                                           */\r
7 /*                                                                      */\r
8 /* This program is free software. You can redistribute it and/or        */\r
9 /* modify it under the terms of the GNU General Public License          */\r
10 /* as published by the Free Software Foundation.                        */\r
11 /************************************************************************/\r
12 \r
13 require_once(TR_INCLUDE_PATH.'../tests/classes/TestsUtility.class.php');\r
14 ?>\r
15 \r
16 <form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post" name="form">\r
17 <?php if (isset($this->qid)) {?><input type="hidden" name="qid" value="<?php echo $this->qid; ?>" /><?php }?>\r
18 <?php if (isset($this->tid)) {?><input type="hidden" name="tid" value="<?php echo $this->tid; ?>" /><?php }?>\r
19 <input type="hidden" name="_course_id" value="<?php echo $this->course_id; ?>" />\r
20 \r
21 <div class="input-form">\r
22         <fieldset class="group_form"><legend class="group_form"><?php echo _AT('test_matchingdd'); ?></legend>\r
23         <div class="row">\r
24                 <span class="required" title="<?php echo _AT('required_field'); ?>">*</span><label for="cats"><?php echo _AT('category'); ?></label><br />\r
25                 <select name="category_id" id="cats">\r
26                         <?php TestsUtility::printQuestionCatsInDropDown($_POST['category_id']); ?>\r
27                 </select>\r
28         </div>\r
29 \r
30         <div class="row">\r
31                 <label for="optional_feedback"><?php echo _AT('optional_feedback'); ?></label> \r
32                 <?php TestsUtility::printVisualEditorLink('optional_feedback'); ?>\r
33 \r
34                 <textarea id="optional_feedback" cols="50" rows="3" name="feedback"><?php \r
35                 echo htmlspecialchars(stripslashes($_POST['feedback'])); ?></textarea>\r
36         </div>\r
37 \r
38         <div class="row">\r
39                 <label for="instructions"><?php echo _AT('instructions'); ?></label> \r
40                 <?php TestsUtility::printVisualEditorLink('instructions'); ?>\r
41                 <textarea id="instructions" cols="50" rows="3" name="instructions"><?php \r
42                 echo htmlspecialchars(stripslashes($_POST['instructions'])); ?></textarea>\r
43         </div>\r
44 \r
45         <div class="row">\r
46                 <h2><?php echo _AT('questions');?></h2>\r
47         </div>\r
48 <?php for ($i=0; $i<10; $i++): ?>\r
49         <div class="row">\r
50                 <?php if ($i < 2) :?>\r
51                         <span class="required" title="<?php echo _AT('required_field'); ?>">*</span>\r
52                 <?php endif; ?>\r
53                 <?php echo _AT('question'); ?> <?php echo ($i+1); ?>\r
54                 \r
55                 <?php TestsUtility::printVisualEditorLink('question_' . $i); ?>\r
56                 \r
57                 <br />\r
58 \r
59                 <select name="question_answer[<?php echo $i; ?>]">\r
60                         <option value="-1">-</option>\r
61                         <?php foreach ($this->letters as $key => $value): ?>\r
62                                 <option value="<?php echo $key; ?>" <?php if (isset($_POST['question_answer']) && $key == $_POST['question_answer'][$i]) { echo 'selected="selected"'; }?>><?php echo $value; ?></option>\r
63                         <?php endforeach; ?>\r
64                 </select>\r
65                 \r
66                 <textarea id="question_<?php echo $i; ?>" cols="50" rows="2" name="question[<?php echo $i; ?>]"><?php \r
67                 echo htmlspecialchars(stripslashes($_POST['question'][$i])); ?></textarea> \r
68         </div>\r
69 <?php endfor; ?>\r
70         \r
71         <div class="row">\r
72                 <h2><?php echo _AT('answers');?></h2>\r
73         </div>\r
74         <?php for ($i=0; $i<10; $i++): ?>\r
75                 <div class="row">\r
76                         <?php if ($i < 2) :?>\r
77                                 <span class="required" title="<?php echo _AT('required_field'); ?>">*</span>\r
78                         <?php endif; ?>\r
79                         <?php echo _AT('answer'); ?> <?php echo $this->letters[$i]; ?>\r
80                         <?php TestsUtility::printVisualEditorLink('answer_' . $i); ?>\r
81                         <br />\r
82                         <textarea id="answer_<?php echo $i; ?>" cols="50" rows="2" name="answer[<?php echo $i; ?>]"><?php \r
83                         echo htmlspecialchars(stripslashes($_POST['answer'][$i])); ?></textarea>\r
84                 </div>\r
85         <?php endfor; ?>\r
86 \r
87         <div class="row buttons">\r
88                 <input type="submit" value="<?php echo _AT('save'); ?>"   name="submit" accesskey="s" />\r
89                 <input type="submit" value="<?php echo _AT('cancel'); ?>" name="cancel" />\r
90         </div>\r
91         </fieldset>\r
92 </div>\r
93 </form>\r