remove old readme
[atutor.git] / docs / themes / default / test_questions / long_qti_2p1.tmpl.php
1 <<?php echo '?'; ?>xml version="1.0" encoding="<?php echo $this->encoding; ?>"<?php echo '?'; ?>>
2 <!-- open ended (free text) question -->
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         <responseDeclaration identifier="RESPONSE" cardinality="single" baseType="string">
16           <?php if ($this->row['feedback']): ?>
17                   <outcomeDeclaration identifier="FEEDBACK" cardinality="single" baseType="identifier"/>
18           <?php endif; ?>
19         </responseDeclaration>
20
21
22         <itemBody>
23                 <extendedTextInteraction responseIdentifier="RESPONSE">
24                         <prompt><?php echo $this->row['question']; ?></prompt>
25                 </extendedTextInteraction>
26         </itemBody>
27
28         <?php if ($this->row['feedback']): ?>
29                 <modalFeedback outcomeIdentifier="FEEDBACK" identifier="FEEDBACK" showHide="hide"><?php echo $this->row['feedback']; ?></modalFeedback> 
30         <?php endif; ?>
31 </assessmentItem>