Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 14 |
|
0.00% |
0 / 2 |
CRAP | |
0.00% |
0 / 1 |
MatchCorrectTemplate | |
0.00% |
0 / 14 |
|
0.00% |
0 / 2 |
6 | |
0.00% |
0 / 1 |
getRule | |
0.00% |
0 / 7 |
|
0.00% |
0 / 1 |
2 | |||
toQTI | |
0.00% |
0 / 7 |
|
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 | |
23 | namespace oat\taoQtiItem\model\qti\response\interactionResponseProcessing; |
24 | |
25 | use oat\taoQtiItem\model\qti\response\interactionResponseProcessing\MatchCorrectTemplate; |
26 | use 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 | */ |
36 | class MatchCorrectTemplate 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 = 'correct'; |
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(match(null, ' . |
66 | 'getResponse("' . $this->getResponse()->getIdentifier() . '"), ' . |
67 | 'getCorrect("' . $this->getResponse()->getIdentifier() . '"))) ' . |
68 | 'setOutcomeValue("' . $this->getOutcome()->getIdentifier() . '", 1); ' . |
69 | 'else setOutcomeValue("' . $this->getOutcome()->getIdentifier() . '", 0);'; |
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 | <match> |
90 | <variable identifier="' . $this->getResponse()->getIdentifier() . '" /> |
91 | <correct identifier="' . $this->getResponse()->getIdentifier() . '" /> |
92 | </match> |
93 | <setOutcomeValue identifier="' . $this->getOutcome()->getIdentifier() . '"> |
94 | <baseValue baseType="integer">1</baseValue> |
95 | </setOutcomeValue> |
96 | </responseIf> |
97 | </responseCondition>'; |
98 | |
99 | |
100 | return (string) $returnValue; |
101 | } |
102 | } |