AC_4897, AC_4898, AC_4899: Multifile uploader fixes.
[acontent.git] / themes / default / tests / test_questions / likert_qti_2p1.tmpl.php
1 <<?php echo '?'; ?>xml version="1.0" encoding="<?php echo $this->encoding; ?>"<?php echo '?'; ?>>
2 <!-- likert question (aka multiple choice with no correct answer) -->
3 <assessmentItem 
4         xmlns="http://www.imsglobal.org/xsd/imsqti_v2p1" 
5         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
6         xsi:schemaLocation="http://www.imsglobal.org/xsd/imsqti_v2p1 imsqti_v2p1.xsd" 
7         identifier="ATUTOR-<?php echo $this->row['question_id']; ?>" 
8         title="<?php echo $this->row['question']; ?>" 
9         adaptive="false" 
10         timeDependent="false"
11         toolname="ATutor - atutor.ca"
12         toolversion="<?php echo VERSION; ?>"
13 >
14
15         <itemBody>
16                 <choiceInteraction responseIdentifier="RESPONSE" shuffle="false" maxChoices="1">
17                         <prompt><?php echo $this->row['question']; ?></prompt>
18                         <?php for ($i=0; $i < $this->num_choices; $i++): ?>
19                                 <simpleChoice identifier="Choice<?php echo $i; ?>" fixed="true"><?php echo $this->row['choice_'.$i]; ?></simpleChoice> 
20                         <?php endfor; ?>
21           </choiceInteraction>
22         </itemBody>
23
24 </assessmentItem>