Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 6 |
|
0.00% |
0 / 2 |
CRAP | |
0.00% |
0 / 1 |
SetOutcomeVariable | |
0.00% |
0 / 6 |
|
0.00% |
0 / 2 |
6 | |
0.00% |
0 / 1 |
__construct | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
2 | |||
getRule | |
0.00% |
0 / 4 |
|
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; |
24 | |
25 | use oat\taoQtiItem\model\qti\response\SetOutcomeVariable; |
26 | use oat\taoQtiItem\model\qti\response\ResponseRule; |
27 | use oat\taoQtiItem\model\qti\expression\Expression; |
28 | |
29 | /** |
30 | * Short description of class |
31 | * |
32 | * @access public |
33 | * @author Joel Bout, <joel.bout@tudor.lu> |
34 | * @package taoQTI |
35 | |
36 | */ |
37 | class SetOutcomeVariable extends ResponseRule |
38 | { |
39 | // --- ASSOCIATIONS --- |
40 | |
41 | |
42 | // --- ATTRIBUTES --- |
43 | |
44 | /** |
45 | * Short description of attribute outcomeVariableIdentifier |
46 | * |
47 | * @access public |
48 | * @var string |
49 | */ |
50 | public $outcomeVariableIdentifier = ''; |
51 | |
52 | /** |
53 | * Short description of attribute expression |
54 | * |
55 | * @access public |
56 | * @var Expression |
57 | */ |
58 | public $expression = null; |
59 | |
60 | // --- OPERATIONS --- |
61 | |
62 | /** |
63 | * Short description of method __construct |
64 | * |
65 | * @access public |
66 | * @author Joel Bout, <joel.bout@tudor.lu> |
67 | * @param string identifier |
68 | * @param Expression expression |
69 | * @return mixed |
70 | */ |
71 | public function __construct($identifier, Expression $expression) |
72 | { |
73 | |
74 | $this->outcomeVariableIdentifier = $identifier; |
75 | $this->expression = $expression; |
76 | } |
77 | |
78 | /** |
79 | * Short description of method getRule |
80 | * |
81 | * @access public |
82 | * @author Joel Bout, <joel.bout@tudor.lu> |
83 | * @return string |
84 | */ |
85 | public function getRule() |
86 | { |
87 | $returnValue = (string) ''; |
88 | |
89 | |
90 | $returnValue = 'setOutcomeValue("' . $this->outcomeVariableIdentifier . '", ' . $this->expression->getRule() |
91 | . ');'; |
92 | |
93 | |
94 | return (string) $returnValue; |
95 | } |
96 | } |