Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 15 |
|
0.00% |
0 / 5 |
CRAP | |
0.00% |
0 / 1 |
tao_models_classes_table_Column | |
0.00% |
0 / 15 |
|
0.00% |
0 / 5 |
30 | |
0.00% |
0 / 1 |
buildColumnFromArray | |
0.00% |
0 / 5 |
|
0.00% |
0 / 1 |
2 | |||
__construct | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
fromArray | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
2 | |||
getLabel | |
0.00% |
0 / 3 |
|
0.00% |
0 / 1 |
2 | |||
toArray | |
0.00% |
0 / 4 |
|
0.00% |
0 / 1 |
2 | |||
getDataProvider | n/a |
0 / 0 |
n/a |
0 / 0 |
0 |
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) 2002-2008 (original work) Public Research Centre Henri Tudor & University of Luxembourg |
19 | * (under the project TAO & TAO2); |
20 | * 2008-2010 (update and modification) Deutsche Institut für Internationale Pädagogische Forschung |
21 | * (under the project TAO-TRANSFER); |
22 | * 2009-2012 (update and modification) Public Research Centre Henri Tudor |
23 | * (under the project TAO-SUSTAIN & TAO-DEV); |
24 | * |
25 | */ |
26 | |
27 | /** |
28 | * Short description of class tao_models_classes_table_Column |
29 | * |
30 | * @abstract |
31 | * @access public |
32 | * @author Joel Bout, <joel.bout@tudor.lu> |
33 | * @package tao |
34 | |
35 | */ |
36 | abstract class tao_models_classes_table_Column |
37 | { |
38 | // --- ASSOCIATIONS --- |
39 | |
40 | |
41 | // --- ATTRIBUTES --- |
42 | |
43 | /** |
44 | * Short description of attribute label |
45 | * |
46 | * @access public |
47 | * @var string |
48 | */ |
49 | public $label = ''; |
50 | |
51 | // --- OPERATIONS --- |
52 | |
53 | /** |
54 | * Short description of method buildColumnFromArray |
55 | * |
56 | * @access public |
57 | * @author Joel Bout, <joel.bout@tudor.lu> |
58 | * @param array array |
59 | * @return tao_models_classes_table_Column |
60 | */ |
61 | public static function buildColumnFromArray($array) |
62 | { |
63 | $returnValue = null; |
64 | |
65 | |
66 | $type = $array['type']; |
67 | unset($array['type']); |
68 | $returnValue = $type::fromArray($array); |
69 | |
70 | |
71 | return $returnValue; |
72 | } |
73 | |
74 | /** |
75 | * Short description of method __construct |
76 | * |
77 | * @access public |
78 | * @author Joel Bout, <joel.bout@tudor.lu> |
79 | * @param string label |
80 | * @return mixed |
81 | */ |
82 | public function __construct($label) |
83 | { |
84 | |
85 | $this->label = $label; |
86 | } |
87 | |
88 | /** |
89 | * Override this function with a concrete implementation |
90 | * |
91 | * @access protected |
92 | * @author Joel Bout, <joel.bout@tudor.lu> |
93 | * @param array array |
94 | * @return tao_models_classes_table_Column |
95 | */ |
96 | protected static function fromArray($array) |
97 | { |
98 | $returnValue = null; |
99 | |
100 | |
101 | |
102 | |
103 | return $returnValue; |
104 | } |
105 | |
106 | /** |
107 | * Short description of method getLabel |
108 | * |
109 | * @access public |
110 | * @author Joel Bout, <joel.bout@tudor.lu> |
111 | * @return string |
112 | */ |
113 | public function getLabel() |
114 | { |
115 | $returnValue = (string) ''; |
116 | |
117 | |
118 | $returnValue = $this->label; |
119 | |
120 | |
121 | return (string) $returnValue; |
122 | } |
123 | |
124 | /** |
125 | * Short description of method toArray |
126 | * |
127 | * @access public |
128 | * @author Joel Bout, <joel.bout@tudor.lu> |
129 | * @return array |
130 | */ |
131 | public function toArray() |
132 | { |
133 | $returnValue = []; |
134 | |
135 | |
136 | $returnValue['type'] = get_class($this); |
137 | $returnValue['label'] = $this->label; |
138 | |
139 | |
140 | return (array) $returnValue; |
141 | } |
142 | |
143 | /** |
144 | * Short description of method getDataProvider |
145 | * |
146 | * @abstract |
147 | * @access public |
148 | * @author Joel Bout, <joel.bout@tudor.lu> |
149 | * @return tao_models_classes_table_DataProvider |
150 | */ |
151 | abstract public function getDataProvider(); |
152 | } |