1
|
|
|
<?php |
2
|
|
|
/************************************************************************ |
3
|
|
|
* OVIDENTIA http://www.ovidentia.org * |
4
|
|
|
************************************************************************ |
5
|
|
|
* Copyright (c) 2003 by CANTICO ( http://www.cantico.fr ) * |
6
|
|
|
* * |
7
|
|
|
* This file is part of Ovidentia. * |
8
|
|
|
* * |
9
|
|
|
* Ovidentia is free software; you can redistribute it and/or modify * |
10
|
|
|
* it under the terms of the GNU General Public License as published by * |
11
|
|
|
* the Free Software Foundation; either version 2, or (at your option) * |
12
|
|
|
* any later version. * |
13
|
|
|
* * |
14
|
|
|
* This program is distributed in the hope that it will be useful, but * |
15
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of * |
16
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * |
17
|
|
|
* See the GNU General Public License for more details. * |
18
|
|
|
* * |
19
|
|
|
* You should have received a copy of the GNU General Public License * |
20
|
|
|
* along with this program; if not, write to the Free Software * |
21
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,* |
22
|
|
|
* USA. * |
23
|
|
|
************************************************************************/ |
24
|
|
|
|
25
|
|
|
require_once dirname(__FILE__).'/agent_right.class.php'; |
26
|
|
|
require_once dirname(__FILE__).'/csv.class.php'; |
27
|
|
|
|
28
|
|
|
class exportAvailableBalancesCls extends absences_Csv |
29
|
|
|
{ |
30
|
|
|
private $resYears; |
31
|
|
|
|
32
|
|
|
/** |
33
|
|
|
* |
34
|
|
|
* @var array |
35
|
|
|
*/ |
36
|
|
|
private $rights; |
37
|
|
|
|
38
|
|
|
|
39
|
|
|
/** |
40
|
|
|
* @var array |
41
|
|
|
*/ |
42
|
|
|
private $recoveries; |
43
|
|
|
|
44
|
|
|
|
45
|
|
|
/** |
46
|
|
|
* @var string YYYY-MM-DD |
47
|
|
|
*/ |
48
|
|
|
private $date = null; |
49
|
|
|
|
50
|
|
|
/** |
51
|
|
|
* @var array |
52
|
|
|
*/ |
53
|
|
|
private $dirfields; |
54
|
|
|
|
55
|
|
|
|
56
|
|
|
public function getHtml() |
57
|
|
|
{ |
58
|
|
|
global $babDB; |
59
|
|
|
|
60
|
|
|
$this->separatortxt = absences_translate("Separator"); |
|
|
|
|
61
|
|
|
$this->other = absences_translate("Other"); |
|
|
|
|
62
|
|
|
$this->comma = absences_translate("Comma"); |
|
|
|
|
63
|
|
|
$this->tab = absences_translate("Tab"); |
|
|
|
|
64
|
|
|
$this->semicolon = absences_translate("Semicolon"); |
|
|
|
|
65
|
|
|
$this->export = absences_translate("Export"); |
|
|
|
|
66
|
|
|
$this->sepdectxt = absences_translate("Decimal separator"); |
|
|
|
|
67
|
|
|
$this->t_yes = absences_translate("Yes"); |
|
|
|
|
68
|
|
|
$this->t_no = absences_translate("No"); |
|
|
|
|
69
|
|
|
$this->t_date = absences_translate('Export day date'); |
|
|
|
|
70
|
|
|
$this->t_year = absences_translate('Year filter'); |
|
|
|
|
71
|
|
|
$this->t_organization = absences_translate('Organization'); |
|
|
|
|
72
|
|
|
$this->additional_fields = absences_translate("Additional fields to export:"); |
|
|
|
|
73
|
|
|
|
74
|
|
|
$W = bab_Widgets(); |
75
|
|
|
$this->datePicker = $W->DatePicker()->setName('date')->display($W->HtmlCanvas()); |
|
|
|
|
76
|
|
|
|
77
|
|
|
$this->resYears = $babDB->db_query("SELECT YEAR(date_begin) year FROM absences_rights WHERE YEAR(date_begin)<>'0' GROUP BY year"); |
78
|
|
|
|
79
|
|
|
$this->resOrganization = $babDB->db_query("SELECT * FROM `absences_organization` ORDER BY name ASC"); |
|
|
|
|
80
|
|
|
|
81
|
|
|
|
82
|
|
|
$this->dirfields = bab_getDirEntry(BAB_REGISTERED_GROUP, BAB_DIR_ENTRY_ID_GROUP); |
83
|
|
|
|
84
|
|
|
unset($this->dirfields['sn']); |
85
|
|
|
unset($this->dirfields['givenname']); |
86
|
|
|
unset($this->dirfields['jpegphoto']); |
87
|
|
|
|
88
|
|
|
return bab_printTemplate($this, absences_addon()->getRelativePath()."vacadm.html", "abexport"); |
|
|
|
|
89
|
|
|
} |
90
|
|
|
|
91
|
|
|
/** |
92
|
|
|
* template method to list available years |
93
|
|
|
*/ |
94
|
|
View Code Duplication |
public function getnextyear() |
|
|
|
|
95
|
|
|
{ |
96
|
|
|
global $babDB; |
97
|
|
|
|
98
|
|
|
if ($arr = $babDB->db_fetch_assoc($this->resYears)) |
99
|
|
|
{ |
100
|
|
|
$this->year = bab_toHtml($arr['year']); |
|
|
|
|
101
|
|
|
return true; |
102
|
|
|
} |
103
|
|
|
|
104
|
|
|
return false; |
105
|
|
|
} |
106
|
|
|
|
107
|
|
|
|
108
|
|
View Code Duplication |
public function getnextfield() |
|
|
|
|
109
|
|
|
{ |
110
|
|
|
if (list($name,$arr) = each($this->dirfields)) |
111
|
|
|
{ |
112
|
|
|
$this->fieldname = bab_toHtml($name); |
|
|
|
|
113
|
|
|
$this->fieldlabel = bab_toHtml($arr['name']); |
|
|
|
|
114
|
|
|
return true; |
115
|
|
|
} |
116
|
|
|
return false; |
117
|
|
|
} |
118
|
|
|
|
119
|
|
|
/** |
120
|
|
|
* template method to list available organization |
121
|
|
|
*/ |
122
|
|
View Code Duplication |
public function getnextorganization() |
|
|
|
|
123
|
|
|
{ |
124
|
|
|
global $babDB; |
125
|
|
|
|
126
|
|
|
if ($arr = $babDB->db_fetch_assoc($this->resOrganization)) |
127
|
|
|
{ |
128
|
|
|
$this->organization = bab_toHtml($arr['name']); |
|
|
|
|
129
|
|
|
$this->id_organization = bab_toHtml($arr['id']); |
|
|
|
|
130
|
|
|
return true; |
131
|
|
|
} |
132
|
|
|
|
133
|
|
|
return false; |
134
|
|
|
} |
135
|
|
|
|
136
|
|
|
|
137
|
|
|
|
138
|
|
|
private function query($year, $groupby = '', $organization = '', $user = '') |
139
|
|
|
{ |
140
|
|
|
global $babDB; |
141
|
|
|
|
142
|
|
|
if (!empty($year)) { |
143
|
|
|
$year = 'AND YEAR(r.date_begin)='.$babDB->quote($year); |
144
|
|
|
} |
145
|
|
|
|
146
|
|
|
if ($organization) { |
147
|
|
|
$organization = 'AND p.id_organization='.$babDB->quote($organization); |
148
|
|
|
} |
149
|
|
|
|
150
|
|
|
if ($user) { |
151
|
|
|
$user = ' AND p.id_user='.$babDB->quote($user); |
152
|
|
|
} |
153
|
|
|
|
154
|
|
|
|
155
|
|
|
$query = " |
156
|
|
|
SELECT |
157
|
|
|
ur.* |
158
|
|
|
FROM |
159
|
|
|
absences_users_rights ur, |
160
|
|
|
absences_rights r, |
161
|
|
|
absences_personnel p, |
162
|
|
|
bab_users u |
163
|
|
|
WHERE |
164
|
|
|
ur.id_user=p.id_user |
165
|
|
|
AND p.id_user=u.id |
166
|
|
|
AND r.id = ur.id_right |
167
|
|
|
$year |
168
|
|
|
$organization |
169
|
|
|
$user |
170
|
|
|
$groupby |
171
|
|
|
ORDER BY |
172
|
|
|
u.lastname, |
173
|
|
|
u.firstname, |
174
|
|
|
r.description |
175
|
|
|
"; |
176
|
|
|
|
177
|
|
|
return $babDB->db_query($query); |
178
|
|
|
} |
179
|
|
|
|
180
|
|
|
|
181
|
|
|
|
182
|
|
|
|
183
|
|
|
|
184
|
|
|
|
185
|
|
|
/** |
186
|
|
|
* New row for the user |
187
|
|
|
* |
188
|
|
|
* @param absences_AgentRight $agentRight |
189
|
|
|
* @param array $remain |
190
|
|
|
* |
191
|
|
|
* @return Array |
192
|
|
|
*/ |
193
|
|
|
private function getNewCurrentRow(absences_AgentRight $agentRight, Array $remain) |
194
|
|
|
{ |
195
|
|
|
$arr = bab_getUserName($agentRight->id_user, false); |
196
|
|
|
|
197
|
|
|
$currentRow = array( |
198
|
|
|
$arr['lastname'], |
199
|
|
|
$arr['firstname'], |
200
|
|
|
(float) $remain['D'], // total days |
201
|
|
|
(float) $remain['H'] // total hours |
202
|
|
|
); |
203
|
|
|
|
204
|
|
|
foreach($this->rights as $initcol) { |
205
|
|
|
$currentRow[$initcol] = 0.0; |
206
|
|
|
} |
207
|
|
|
|
208
|
|
|
foreach($this->recoveries as $quantity_unit => $initcol) { |
209
|
|
|
if (isset($initcol)) { |
210
|
|
|
$currentRow[$initcol] = 0.0; |
211
|
|
|
} |
212
|
|
|
} |
213
|
|
|
|
214
|
|
|
return $currentRow; |
215
|
|
|
} |
216
|
|
|
|
217
|
|
|
|
218
|
|
|
/** |
219
|
|
|
* Process one row |
220
|
|
|
* if user row exists, add remain to the correct right column |
221
|
|
|
* if the user row does not exists, create it |
222
|
|
|
* |
223
|
|
|
* return the row only if it is the first user row |
224
|
|
|
* else return null |
225
|
|
|
* |
226
|
|
|
* @return array | null |
227
|
|
|
*/ |
228
|
|
|
private function processRow($arr) |
229
|
|
|
{ |
230
|
|
|
static $currentUser = null; |
231
|
|
|
static $currentRow = null; |
232
|
|
|
|
233
|
|
|
$return = null; |
234
|
|
|
|
235
|
|
|
if (null === $arr) { |
236
|
|
|
|
237
|
|
|
if (!isset($currentRow)) { |
238
|
|
|
return array(); |
239
|
|
|
} |
240
|
|
|
|
241
|
|
|
return $currentRow; |
242
|
|
|
} |
243
|
|
|
|
244
|
|
|
$agentRight = new absences_AgentRight(); |
245
|
|
|
$agentRight->setRow($arr); |
246
|
|
|
|
247
|
|
|
$right = $agentRight->getRight(); |
248
|
|
|
|
249
|
|
|
$remain = array('D' => 0.0, 'H' => 0.0); |
250
|
|
|
|
251
|
|
|
$remain_line = $remain[$right->quantity_unit] = $agentRight->getAvailableQuantity($this->date); |
252
|
|
|
|
253
|
|
|
|
254
|
|
|
if ($currentUser !== $agentRight->id_user) { |
255
|
|
|
$currentUser = $agentRight->id_user; |
256
|
|
|
|
257
|
|
|
if (null !== $currentRow && !$this->isRowEmpty($currentRow)) { |
|
|
|
|
258
|
|
|
$return = $currentRow; |
259
|
|
|
} |
260
|
|
|
|
261
|
|
|
$currentRow = $this->getNewCurrentRow($agentRight, $remain); |
262
|
|
|
|
263
|
|
|
$this->addDirValues($arr['id_user'], $currentRow); |
264
|
|
|
|
265
|
|
|
} else { |
266
|
|
|
|
267
|
|
|
$currentRow[2] += (float) $remain['D']; // total days |
268
|
|
|
$currentRow[3] += (float) $remain['H']; // total hours |
269
|
|
|
} |
270
|
|
|
|
271
|
|
|
|
272
|
|
|
$this->setRightColumn($right, $currentRow, $remain, $remain_line); |
273
|
|
|
|
274
|
|
|
|
275
|
|
|
return $return; |
276
|
|
|
} |
277
|
|
|
|
278
|
|
|
|
279
|
|
|
/** |
280
|
|
|
* Complete current row with right value |
281
|
|
|
* @param absences_Right $right |
282
|
|
|
* @param array &$currentRow |
283
|
|
|
*/ |
284
|
|
|
private function setRightColumn(absences_Right $right, Array &$currentRow, Array $remain, $remain_line) |
285
|
|
|
{ |
286
|
|
|
|
287
|
|
|
if (absences_Right::RECOVERY === $right->getKind()) { |
288
|
|
|
|
289
|
|
|
// recovery right |
290
|
|
|
$col = $this->recoveries[$right->quantity_unit]; |
291
|
|
|
if ($col > 3) { |
292
|
|
|
$currentRow[$col] += $remain[$right->quantity_unit]; |
293
|
|
|
} |
294
|
|
|
|
295
|
|
|
|
296
|
|
|
} else { |
297
|
|
|
|
298
|
|
|
|
299
|
|
|
//regular right, add to specific column |
300
|
|
|
$col = $this->rights[$right->id]; |
301
|
|
|
|
302
|
|
|
if ($col > 3) { |
303
|
|
|
$currentRow[$col] = $remain_line; |
304
|
|
|
} |
305
|
|
|
} |
306
|
|
|
} |
307
|
|
|
|
308
|
|
|
/** |
309
|
|
|
* Complete current row with directory entry values |
310
|
|
|
* @param int $id_user |
311
|
|
|
* @param array &$currentRow |
312
|
|
|
*/ |
313
|
|
|
private function addDirValues($id_user, Array &$currentRow) |
314
|
|
|
{ |
315
|
|
|
$agent = absences_Agent::getFromIdUser($id_user); |
316
|
|
|
|
317
|
|
|
foreach ($this->dirfields as $name => $dummy) { |
318
|
|
|
$currentRow[] = $this->getAgentDirValue($agent, $name); |
319
|
|
|
} |
320
|
|
|
} |
321
|
|
|
|
322
|
|
|
|
323
|
|
|
|
324
|
|
|
|
325
|
|
|
/** |
326
|
|
|
* @return string |
327
|
|
|
*/ |
328
|
|
|
private function getSeparator() |
329
|
|
|
{ |
330
|
|
|
switch((int) bab_pp('wsepar')) |
331
|
|
|
{ |
332
|
|
|
case 0: return bab_pp('separ'); |
333
|
|
|
case 1: return ','; |
334
|
|
|
case 2: return "\t"; |
335
|
|
|
case 3: return ';'; |
336
|
|
|
} |
337
|
|
|
} |
338
|
|
|
|
339
|
|
|
|
340
|
|
|
|
341
|
|
|
protected function getDate() |
342
|
|
|
{ |
343
|
|
|
$W = bab_Widgets(); |
344
|
|
|
return $W->DatePicker()->getISODate(bab_rp('date')); |
345
|
|
|
} |
346
|
|
|
|
347
|
|
|
|
348
|
|
|
/** |
349
|
|
|
* @return array |
350
|
|
|
*/ |
351
|
|
|
private function getHeader($year = '', $organization = '') |
352
|
|
|
{ |
353
|
|
|
global $babDB; |
354
|
|
|
|
355
|
|
|
$columns = $this->query($year, 'GROUP BY r.id', $organization); |
356
|
|
|
$this->rights = array(); |
357
|
|
|
|
358
|
|
|
|
359
|
|
|
if ($this->dirfields && !empty($this->dirfields)) |
|
|
|
|
360
|
|
|
{ |
361
|
|
|
$ov_fields = bab_getDirEntry(BAB_REGISTERED_GROUP, BAB_DIR_ENTRY_ID_GROUP); |
362
|
|
|
} |
363
|
|
|
|
364
|
|
|
$header = array( |
365
|
|
|
absences_translate('Lastname'), |
366
|
|
|
absences_translate('Firstname'), |
367
|
|
|
absences_translate('Total days'), |
368
|
|
|
absences_translate('Total hours') |
369
|
|
|
); |
370
|
|
|
|
371
|
|
|
|
372
|
|
|
$this->recoveries = array( |
373
|
|
|
'D' => null, |
374
|
|
|
'H' => null |
375
|
|
|
); |
376
|
|
|
|
377
|
|
|
$recovery = array( |
378
|
|
|
'D' => false, |
379
|
|
|
'H' => false |
380
|
|
|
); |
381
|
|
|
|
382
|
|
|
while ($arr = $babDB->db_fetch_assoc($columns)) |
383
|
|
|
{ |
384
|
|
|
$agentRight = new absences_AgentRight(); |
385
|
|
|
$agentRight->setRow($arr); |
386
|
|
|
|
387
|
|
|
$right = $agentRight->getRight(); |
388
|
|
|
|
389
|
|
|
if (absences_Right::RECOVERY === $right->getKind()) { |
390
|
|
|
$recovery[$right->quantity_unit] = true; |
391
|
|
|
continue; |
392
|
|
|
} |
393
|
|
|
|
394
|
|
|
$header[] = $right->description.' ('.$right->getUnitLabel().')'; |
395
|
|
|
$this->rights[$arr['id_right']] = (count($header) -1); |
396
|
|
|
} |
397
|
|
|
|
398
|
|
View Code Duplication |
if ($recovery['D']) { |
|
|
|
|
399
|
|
|
$header[] = absences_translate('Recoveries (days)'); |
400
|
|
|
$this->recoveries['D'] = (count($header) -1); |
401
|
|
|
} |
402
|
|
|
|
403
|
|
View Code Duplication |
if ($recovery['H']) { |
|
|
|
|
404
|
|
|
$header[] = absences_translate('Recoveries (hours)'); |
405
|
|
|
$this->recoveries['H'] = (count($header) -1); |
406
|
|
|
} |
407
|
|
|
|
408
|
|
|
foreach($this->dirfields as $name => $dummy) |
409
|
|
|
{ |
410
|
|
|
$header[] = $ov_fields[$name]['name']; |
|
|
|
|
411
|
|
|
} |
412
|
|
|
|
413
|
|
|
return $header; |
414
|
|
|
} |
415
|
|
|
|
416
|
|
|
|
417
|
|
|
|
418
|
|
|
public function csv() |
419
|
|
|
{ |
420
|
|
|
|
421
|
|
|
$W = bab_Widgets(); |
422
|
|
|
|
423
|
|
|
if ($date = $W->DatePicker()->getISODate(bab_rp('date'))) { |
424
|
|
|
if ('0000-00-00' !== $date) { |
425
|
|
|
$this->date = $date; |
426
|
|
|
} |
427
|
|
|
} |
428
|
|
|
|
429
|
|
|
$this->dirfields = bab_rp('dirfields', array()); |
|
|
|
|
430
|
|
|
|
431
|
|
|
|
432
|
|
|
|
433
|
|
|
$this->separator = $this->getSeparator(); |
434
|
|
|
$this->sepdec = bab_rp('sepdec'); |
435
|
|
|
$header = $this->getHeader(bab_rp('year'), bab_rp('organization')); |
436
|
|
|
|
437
|
|
|
|
438
|
|
|
$this->echoCsv($header); |
439
|
|
|
|
440
|
|
|
} |
441
|
|
|
|
442
|
|
|
|
443
|
|
|
|
444
|
|
|
|
445
|
|
|
|
446
|
|
|
private function echoCsv($header) |
447
|
|
|
{ |
448
|
|
|
global $babDB; |
449
|
|
|
|
450
|
|
|
$this->setHeaders(absences_translate("Vacation")); |
451
|
|
|
|
452
|
|
|
$this->outputArr($header); |
453
|
|
|
|
454
|
|
|
$rows = $this->query(bab_rp('year'), 'GROUP BY u.id, r.id', bab_rp('organization')); |
455
|
|
|
|
456
|
|
View Code Duplication |
while ($arr = $babDB->db_fetch_assoc($rows)) |
|
|
|
|
457
|
|
|
{ |
458
|
|
|
if (null !== $line = $this->processRow($arr)) |
459
|
|
|
{ |
460
|
|
|
$this->outputArr($line); |
461
|
|
|
} |
462
|
|
|
} |
463
|
|
|
|
464
|
|
|
if (null !== $line = $this->processRow(null)) { |
465
|
|
|
$this->outputArr($line); |
466
|
|
|
} |
467
|
|
|
|
468
|
|
|
exit; |
469
|
|
|
} |
470
|
|
|
|
471
|
|
|
|
472
|
|
|
/** |
473
|
|
|
* @return array |
474
|
|
|
*/ |
475
|
|
|
private function getUserRow($id_user) |
476
|
|
|
{ |
477
|
|
|
global $babDB; |
478
|
|
|
|
479
|
|
|
$rows = $this->query('', 'GROUP BY u.id, r.id', '', $id_user); |
480
|
|
|
|
481
|
|
View Code Duplication |
while ($arr = $babDB->db_fetch_assoc($rows)) |
|
|
|
|
482
|
|
|
{ |
483
|
|
|
if (null !== $line = $this->processRow($arr)) |
484
|
|
|
{ |
485
|
|
|
return $line; |
486
|
|
|
} |
487
|
|
|
} |
488
|
|
|
|
489
|
|
|
return $this->processRow(null); |
490
|
|
|
} |
491
|
|
|
|
492
|
|
|
|
493
|
|
|
|
494
|
|
|
/** |
495
|
|
|
* @return Widget_Displayable_Interface |
496
|
|
|
*/ |
497
|
|
|
public function compareDateForOneUser($id_user) |
498
|
|
|
{ |
499
|
|
|
require_once $GLOBALS['babInstallPath'].'utilit/dateTime.php'; |
500
|
|
|
|
501
|
|
|
$this->dirfields = array(); |
502
|
|
|
|
503
|
|
|
$header = $this->getHeader(); |
504
|
|
|
|
505
|
|
|
|
506
|
|
|
$yesterday = BAB_DateTime::now(); |
507
|
|
|
$yesterday->less(1, BAB_DATETIME_DAY); |
508
|
|
|
|
509
|
|
|
$this->date = $yesterday->getIsoDate(); |
510
|
|
|
$arr0 = $this->getUserRow($id_user); |
511
|
|
|
|
512
|
|
|
$this->date = date('Y-m-d'); |
513
|
|
|
$arr1 = $this->getUserRow($id_user); |
514
|
|
|
|
515
|
|
|
$this->date = null; |
516
|
|
|
$arr2 = $this->getUserRow($id_user); |
517
|
|
|
|
518
|
|
|
|
519
|
|
|
$W = bab_Widgets(); |
520
|
|
|
$table = $W->TableView(); |
521
|
|
|
|
522
|
|
|
$row = 0; |
523
|
|
|
|
524
|
|
|
$table->addItem($W->Label(''), $row, 0 ); |
525
|
|
|
$table->addItem($W->Label('Yesterday'), $row, 1); |
526
|
|
|
$table->addItem($W->Label('Today'), $row, 2); |
527
|
|
|
$table->addItem($W->Label('No date'), $row, 3); |
528
|
|
|
$row++; |
529
|
|
|
|
530
|
|
|
foreach ($header as $k => $label) { |
531
|
|
|
|
532
|
|
|
if ('"0,0"' === $arr1[$k] && '"0,0"' === $arr2[$k]) { |
533
|
|
|
continue; |
534
|
|
|
} |
535
|
|
|
|
536
|
|
|
$table->addItem($W->Label($label), $row, 0 ); |
537
|
|
|
$table->addItem($l0 = $W->Label($arr0[$k]), $row, 1); |
538
|
|
|
$table->addItem($l1 = $W->Label($arr1[$k]), $row, 2); |
539
|
|
|
$table->addItem($l2 = $W->Label($arr2[$k]), $row, 3); |
540
|
|
|
|
541
|
|
|
$values = array_unique(array($arr0[$k], $arr1[$k], $arr2[$k])); |
542
|
|
|
|
543
|
|
|
if (1 !== count($values)) { |
544
|
|
|
$l0->addClass('widget-strong'); |
545
|
|
|
$l1->addClass('widget-strong'); |
546
|
|
|
$l2->addClass('widget-strong'); |
547
|
|
|
} |
548
|
|
|
|
549
|
|
|
$row++; |
550
|
|
|
} |
551
|
|
|
|
552
|
|
|
return $table; |
553
|
|
|
} |
554
|
|
|
} |
An attempt at access to an undefined property has been detected. This may either be a typographical error or the property has been renamed but there are still references to its old name.
If you really want to allow access to undefined properties, you can define magic methods to allow access. See the php core documentation on Overloading.