Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 8 |
|
0.00% |
0 / 3 |
CRAP | |
0.00% |
0 / 1 |
ClassFormUpdatedEvent | |
0.00% |
0 / 8 |
|
0.00% |
0 / 3 |
12 | |
0.00% |
0 / 1 |
__construct | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
2 | |||
getName | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
jsonSerialize | |
0.00% |
0 / 5 |
|
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) 2017 (original work) Open Assessment Technologies SA |
19 | * |
20 | */ |
21 | |
22 | namespace oat\tao\model\event; |
23 | |
24 | use core_kernel_classes_Resource; |
25 | use JsonSerializable; |
26 | use oat\oatbox\event\Event; |
27 | |
28 | class ClassFormUpdatedEvent implements Event, JsonSerializable |
29 | { |
30 | /** @var string */ |
31 | protected $class; |
32 | |
33 | /** @var array */ |
34 | protected $properties; |
35 | |
36 | /** |
37 | * @param core_kernel_classes_Resource $class |
38 | * @param array $properties |
39 | */ |
40 | public function __construct(core_kernel_classes_Resource $class, array $properties) |
41 | { |
42 | $this->class = $class; |
43 | $this->properties = $properties; |
44 | } |
45 | |
46 | /** |
47 | * Return a unique name for this event |
48 | * @see \oat\oatbox\event\Event::getName() |
49 | */ |
50 | public function getName() |
51 | { |
52 | return get_class($this); |
53 | } |
54 | |
55 | public function jsonSerialize(): array |
56 | { |
57 | return [ |
58 | 'uri' => $this->class->getUri(), |
59 | 'label' => $this->class->getLabel(), |
60 | 'data' => $this->properties |
61 | ]; |
62 | } |
63 | } |