Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 14
0.00% covered (danger)
0.00%
0 / 2
CRAP
0.00% covered (danger)
0.00%
0 / 1
MapResponseTemplate
0.00% covered (danger)
0.00%
0 / 14
0.00% covered (danger)
0.00%
0 / 2
6
0.00% covered (danger)
0.00%
0 / 1
 getRule
0.00% covered (danger)
0.00%
0 / 7
0.00% covered (danger)
0.00%
0 / 1
2
 toQTI
0.00% covered (danger)
0.00%
0 / 7
0.00% covered (danger)
0.00%
0 / 1
2
1<?php
2
3/*
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; under version 2
7 * of the License (non-upgradable).
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
17 *
18 * Copyright (c) 2013 (original work) Open Assessment Technologies SA (under the project TAO-PRODUCT);
19 *
20 *
21 */
22
23namespace oat\taoQtiItem\model\qti\response\interactionResponseProcessing;
24
25use oat\taoQtiItem\model\qti\response\interactionResponseProcessing\MapResponseTemplate;
26use oat\taoQtiItem\model\qti\response\interactionResponseProcessing\Template;
27
28/**
29 * Short description of class
30 *
31 * @access public
32 * @author Joel Bout, <joel.bout@tudor.lu>
33 * @package taoQTI
34
35 */
36class MapResponseTemplate extends Template
37{
38    // --- ASSOCIATIONS ---
39
40
41    // --- ATTRIBUTES ---
42
43    /**
44     * Short description of attribute CLASS_ID
45     *
46     * @access public
47     * @var string
48     */
49    public const CLASS_ID = 'map';
50
51    // --- OPERATIONS ---
52
53    /**
54     * Short description of method getRule
55     *
56     * @access public
57     * @author Joel Bout, <joel.bout@tudor.lu>
58     * @return string
59     */
60    public function getRule()
61    {
62        $returnValue = (string) '';
63
64
65        $returnValue = 'if(isNull(null, getResponse("' . $this->getResponse()->getIdentifier() . '"))) { '
66            . 'setOutcomeValue("' . $this->getOutcome()->getIdentifier() . '", 0); } else { ' . 'setOutcomeValue("'
67            . $this->getOutcome()->getIdentifier() . '", ' . 'mapResponse(null, getMap("'
68            . $this->getResponse()->getIdentifier() . '"), getResponse("' . $this->getResponse()->getIdentifier()
69            . '"))); };';
70
71
72        return (string) $returnValue;
73    }
74
75    /**
76     * Short description of method toQTI
77     *
78     * @access public
79     * @author Joel Bout, <joel.bout@tudor.lu>
80     * @return string
81     */
82    public function toQTI()
83    {
84        $returnValue = (string) '';
85
86
87        $returnValue = '<responseCondition>
88            <responseIf>
89                <not>
90                    <isNull>
91                        <variable identifier="' . $this->getResponse()->getIdentifier() . '" />
92                    </isNull>
93                </not>
94                <setOutcomeValue identifier="' . $this->getOutcome()->getIdentifier() . '">
95                    <mapResponse identifier="' . $this->getResponse()->getIdentifier() . '" />
96                </setOutcomeValue>
97            </responseIf>
98        </responseCondition>';
99
100
101        return (string) $returnValue;
102    }
103}