remove old readme
[atutor.git] / docs / themes / default / test_questions / manifest_qti_1p2.tmpl.php
1 <<?php echo '?'; ?>xml version="1.0" encoding="<?php echo $this->encoding; ?>"<?php echo '?'; ?>>
2 <manifest xmlns="http://www.imsglobal.org/xsd/imscp_v1p2" xmlns:imsmd="http://www.imsglobal.org/xsd/imsmd_v1p2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:imsqti="http://www.imsglobal.org/xsd/imsqti_v2p1" identifier="MANIFEST-<?php echo md5(time()); ?>" xsi:schemaLocation="http://www.imsglobal.org/xsd/imscp_v1p2 http://www.imsglobal.org/xsd/imscp_v1p2.xsd http://www.imsglobal.org/xsd/imsmd_v1p2 http://www.imsglobal.org/xsd/imsmd_v1p2p2.xsd http://www.imsglobal.org/xsd/ims_qtilitev1p2p1.xsd">
3         <metadata>
4                 <schema>IMS Question and Test Interoperability</schema>
5                 <schemaversion>1.2.1</schemaversion>
6         </metadata>
7         <organizations default="">
8                 <organization identifier="<?php echo 'ATUTOR_'.md5($this->title); ?>" structure="hierarchical">
9                         <title><?php echo $this->title; ?></title>
10                         <item identifier="ITEM1" identifierref="RESOURCE1">
11                                 <title><?php echo $this->title; ?></title>
12                         </item>
13                 </organization>
14         </organizations>
15         <resources>
16                 <?php
17                 //Respondus only supports type imsqti_xmlv1p1, qti 2.0 can use imsqti_item_xmlv1p1 as each individual items
18                 ?>
19                 <resource identifier="RESOURCE1" type="imsqti_xmlv1p1" href="<?php echo $this->xml_filename; ?>">
20                         <metadata/>
21                         <file href="<?php echo $this->xml_filename; ?>"/>
22                         <!-- dependancies go here -->
23                 <?php foreach ($this->dependencies as $dependency_href): ?>
24                         <file href="resources/<?php echo $dependency_href; ?>"/>
25                 <?php endforeach; ?>
26                 </resource>
27         </resources>
28 </manifest>