Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 7 |
|
0.00% |
0 / 5 |
CRAP | |
0.00% |
0 / 1 |
DeliveryExecutionExpired | |
0.00% |
0 / 7 |
|
0.00% |
0 / 5 |
30 | |
0.00% |
0 / 1 |
getName | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
__construct | |
0.00% |
0 / 3 |
|
0.00% |
0 / 1 |
2 | |||
getDeliveryExecution | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getReason | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getProctor | |
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\taoProctoring\model\event; |
23 | |
24 | use oat\oatbox\event\Event; |
25 | use oat\taoDelivery\model\execution\DeliveryExecution; |
26 | use oat\oatbox\user\User; |
27 | |
28 | /** |
29 | * This event is fired whenever a proctor terminates |
30 | * a delivery execution expired after pausing |
31 | */ |
32 | class DeliveryExecutionExpired implements Event |
33 | { |
34 | /** |
35 | * @var DeliveryExecution |
36 | */ |
37 | private $deliveryExecution; |
38 | |
39 | /** |
40 | * @var User |
41 | */ |
42 | private $proctor; |
43 | |
44 | /** |
45 | * @var mixed |
46 | */ |
47 | private $reason; |
48 | |
49 | /** |
50 | * @return string |
51 | */ |
52 | public function getName() |
53 | { |
54 | return __CLASS__; |
55 | } |
56 | |
57 | /** |
58 | * DeliveryExecutionExpired constructor. |
59 | * @param DeliveryExecution $deliveryExecution |
60 | * @param User $proctor |
61 | * @param null $reason |
62 | */ |
63 | public function __construct(DeliveryExecution $deliveryExecution, User $proctor, $reason = null) |
64 | { |
65 | $this->deliveryExecution = $deliveryExecution; |
66 | $this->proctor = $proctor; |
67 | $this->reason = $reason; |
68 | } |
69 | |
70 | /** |
71 | * Returns the terminated delivery execution |
72 | * |
73 | * @return DeliveryExecution |
74 | */ |
75 | public function getDeliveryExecution() |
76 | { |
77 | return $this->deliveryExecution; |
78 | } |
79 | |
80 | /** |
81 | * Returns the reason for termination |
82 | * |
83 | * @return mixed |
84 | */ |
85 | public function getReason() |
86 | { |
87 | return $this->reason; |
88 | } |
89 | |
90 | /** |
91 | * Returns the proctor that terminated the execution |
92 | * |
93 | * @return \oat\oatbox\user\User |
94 | */ |
95 | public function getProctor() |
96 | { |
97 | return $this->proctor; |
98 | } |
99 | } |