Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
50.00% |
3 / 6 |
|
75.00% |
3 / 4 |
CRAP | |
0.00% |
0 / 1 |
TraceVariableColumn | |
50.00% |
3 / 6 |
|
75.00% |
3 / 4 |
8.12 | |
0.00% |
0 / 1 |
fromArray | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
getDataProvider | |
0.00% |
0 / 3 |
|
0.00% |
0 / 1 |
6 | |||
getContextIdentifier | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
getIdentifier | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 |
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) 2009-2012 (original work) Public Research Centre Henri Tudor (under the project TAO-SUSTAIN & TAO-DEV); |
19 | * |
20 | * |
21 | */ |
22 | |
23 | namespace oat\taoOutcomeUi\model\table; |
24 | |
25 | use tao_models_classes_table_Column; |
26 | |
27 | /** |
28 | * Short description of class oat\taoOutcomeUi\model\table\TraceVariableColumn |
29 | * |
30 | * @access public |
31 | * @author Sergey Lunev, <sergey.lunev@taotesting.com> |
32 | * @package taoOutcomeUi |
33 | */ |
34 | class TraceVariableColumn extends tao_models_classes_table_Column |
35 | { |
36 | public const CONTEXT_IDENTIFIER = 'delivery_execution'; |
37 | public const IDENTIFIER = 'trace_variable'; |
38 | |
39 | private static $dataProvider; |
40 | |
41 | protected static function fromArray($array) |
42 | { |
43 | return new self($array['label']); |
44 | } |
45 | |
46 | public function getDataProvider() |
47 | { |
48 | if (!self::$dataProvider) { |
49 | self::$dataProvider = new TraceVariableDataProvider(); |
50 | } |
51 | return self::$dataProvider; |
52 | } |
53 | |
54 | public function getContextIdentifier() |
55 | { |
56 | return self::CONTEXT_IDENTIFIER; |
57 | } |
58 | |
59 | public function getIdentifier() |
60 | { |
61 | return self::IDENTIFIER; |
62 | } |
63 | } |