Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 9 |
|
0.00% |
0 / 6 |
CRAP | |
0.00% |
0 / 1 |
QtiMoveEvent | |
0.00% |
0 / 9 |
|
0.00% |
0 / 6 |
42 | |
0.00% |
0 / 1 |
getName | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
__construct | |
0.00% |
0 / 4 |
|
0.00% |
0 / 1 |
2 | |||
getContext | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getSession | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getFrom | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getTo | |
0.00% |
0 / 1 |
|
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) 2015 (original work) Open Assessment Technologies SA; |
19 | * |
20 | */ |
21 | |
22 | namespace oat\taoQtiTest\models\event; |
23 | |
24 | use qtism\runtime\tests\AssessmentTestSession; |
25 | use qtism\runtime\tests\RouteItem; |
26 | use oat\oatbox\event\Event; |
27 | |
28 | /** |
29 | * |
30 | */ |
31 | class QtiMoveEvent implements Event |
32 | { |
33 | public const CONTEXT_BEFORE = 'before'; |
34 | public const CONTEXT_AFTER = 'after'; |
35 | |
36 | private $from; |
37 | private $to; |
38 | private $session; |
39 | private $context; |
40 | |
41 | /** |
42 | * @return string |
43 | */ |
44 | public function getName() |
45 | { |
46 | return __CLASS__; |
47 | } |
48 | |
49 | /** |
50 | * QtiMoveEvent constructor. |
51 | * @param string $context 'before' or 'after' move |
52 | * @param AssessmentTestSession $session |
53 | * @param null|RouteItem $from |
54 | * @param null|RouteItem $to |
55 | */ |
56 | public function __construct($context, AssessmentTestSession $session, RouteItem $from = null, RouteItem $to = null) |
57 | { |
58 | $this->context = $context; |
59 | $this->session = $session; |
60 | $this->from = $from; |
61 | $this->to = $to; |
62 | } |
63 | |
64 | /** |
65 | * @return string |
66 | */ |
67 | public function getContext() |
68 | { |
69 | return $this->context; |
70 | } |
71 | |
72 | /** |
73 | * @return AssessmentTestSession |
74 | */ |
75 | public function getSession() |
76 | { |
77 | return $this->session; |
78 | } |
79 | |
80 | /** |
81 | * @return null|RouteItem |
82 | */ |
83 | public function getFrom() |
84 | { |
85 | return $this->from; |
86 | } |
87 | |
88 | /** |
89 | * @return null|RouteItem |
90 | */ |
91 | public function getTo() |
92 | { |
93 | return $this->to; |
94 | } |
95 | } |