mirror of
https://github.com/moodle/moodle.git
synced 2025-02-23 11:27:51 +01:00
51 lines
2.2 KiB
Smarty
Executable File
51 lines
2.2 KiB
Smarty
Executable File
{if $courselevelexport}<?xml version="1.0" encoding="UTF-8"?>{/if}
|
|
<assessmentItem xmlns="http://www.imsglobal.org/xsd/imsqti_item_v2p0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.imsglobal.org/xsd/imsqti_item_v2p0 ./imsqti_item_v2p0.xsd" identifier="{$assessmentitemidentifier}" title="{$assessmentitemtitle}" adaptive="false" timeDependent="false">
|
|
<responseDeclaration identifier="{$questionid}" cardinality="{$responsedeclarationcardinality}" baseType="string">
|
|
<correctResponse>
|
|
{section name=answer loop=$correctresponses}
|
|
<value>{$correctresponses[answer].answer}</value>
|
|
{/section}
|
|
</correctResponse>
|
|
<mapping lowerBound="0" upperBound="1" defaultValue="0">
|
|
{section name=answer loop=$answers}
|
|
{if $answers[answer].fraction != 0}
|
|
<mapEntry mapKey="{$answers[answer].answer}" mappedValue="{$answers[answer].fraction}" />
|
|
{/if}
|
|
{/section}
|
|
</mapping>
|
|
</responseDeclaration>
|
|
<outcomeDeclaration identifier="SCORE" cardinality="single" baseType="float"/>
|
|
<itemBody>
|
|
<p>{$questionText}</p>
|
|
<div class="interactive.textEntry">
|
|
<textEntryInteraction responseIdentifier="{$questionid}" expectedLength="15"/>
|
|
</div>
|
|
{if $question_has_image == 1}
|
|
<div class="media">
|
|
{if $hassize == 1}
|
|
<object type="{$question->mediamimetype}" data="{$question->mediaurl}" width="{$question->mediax}" height="{$question->mediay}" />
|
|
{else}
|
|
<object type="{$question->mediamimetype}" data="{$question->mediaurl}" />
|
|
{/if}
|
|
</div>
|
|
{/if}
|
|
</itemBody>
|
|
<responseProcessing xmlns="http://www.imsglobal.org/xsd/imsqti_item_v2p0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.imsglobal.org/xsd/imsqti_item_v2p0 ../imsqti_item_v2p0.xsd">
|
|
<responseCondition>
|
|
<responseIf>
|
|
<isNull>
|
|
<variable identifier="{$questionid}"/>
|
|
</isNull>
|
|
<setOutcomeValue identifier="SCORE">
|
|
<baseValue baseType="integer">0</baseValue>
|
|
</setOutcomeValue>
|
|
</responseIf>
|
|
<responseElse>
|
|
<setOutcomeValue identifier="SCORE">
|
|
<mapResponse identifier="{$questionid}"/>
|
|
</setOutcomeValue>
|
|
</responseElse>
|
|
</responseCondition>
|
|
</responseProcessing>
|
|
</assessmentItem>
|