bfc8ac0b4fa8a79a551c21f42cacffe7e9d0fc8e
[atutor.git] / docs / themes / default / test_questions / long.tmpl.php
1 <p><?php echo AT_print($this->row['question'], 'tests_questions.question'); ?></p>
2
3 <?php if ($this->row['properties'] == 1): /* one word */ ?>
4         <input type="text" name="answers[<?php echo $this->row['question_id']; ?>]" class="formfield" size="15" value="<?php echo htmlspecialchars($this->response); ?>" />
5
6 <?php elseif ($this->row['properties'] == 2): /* sentence */ ?>
7         <input type="text" name="answers[<?php echo $this->row['question_id']; ?>]" class="formfield" size="45" value="<?php echo htmlspecialchars($this->response); ?>" />
8
9 <?php elseif ($this->row['properties'] == 3): /* paragraph */ ?>
10         <textarea cols="55" rows="5" name="answers[<?php echo $this->row['question_id']; ?>]" class="formfield"><?php echo htmlspecialchars($this->response); ?></textarea>
11
12 <?php elseif ($this->row['properties'] == 4): /* page */ ?>
13         <textarea cols="55" rows="25" name="answers[<?php echo $this->row['question_id']; ?>]" class="formfield"><?php echo htmlspecialchars($this->response); ?></textarea>
14
15 <?php endif; ?>