forked from anuko/timetracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathttTeamHelper.class.php
More file actions
776 lines (672 loc) · 25.3 KB
/
Copy pathttTeamHelper.class.php
File metadata and controls
776 lines (672 loc) · 25.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
<?php
// +----------------------------------------------------------------------+
// | Anuko Time Tracker
// +----------------------------------------------------------------------+
// | Copyright (c) Anuko International Ltd. (https://www.anuko.com)
// +----------------------------------------------------------------------+
// | LIBERAL FREEWARE LICENSE: This source code document may be used
// | by anyone for any purpose, and freely redistributed alone or in
// | combination with other software, provided that the license is obeyed.
// |
// | There are only two ways to violate the license:
// |
// | 1. To redistribute this code in source form, with the copyright
// | notice or license removed or altered. (Distributing in compiled
// | forms without embedded copyright notices is permitted).
// |
// | 2. To redistribute modified versions of this code in *any* form
// | that bears insufficient indications that the modifications are
// | not the work of the original author(s).
// |
// | This license applies to this document only, not any other software
// | that it may be combined with.
// |
// +----------------------------------------------------------------------+
// | Contributors:
// | https://www.anuko.com/time_tracker/credits.htm
// +----------------------------------------------------------------------+
import('ttUserHelper');
import('DateAndTime');
import('ttInvoiceHelper');
// Class ttTeamHelper - contains helper functions that operate with groups.
class ttTeamHelper {
// The getUsersForClient obtains all active and inactive users in a group that are relevant to a client.
static function getUsersForClient() {
global $user;
$mdb2 = getConnection();
$sql = "select u.id, u.name from tt_user_project_binds upb".
" inner join tt_client_project_binds cpb on (upb.project_id = cpb.project_id and cpb.client_id = $user->client_id)".
" inner join tt_users u on (u.id = upb.user_id)".
" where (u.status = 1 or u.status = 0)".
" group by u.id".
" order by upper(u.name)";
$res = $mdb2->query($sql);
$user_list = array();
if (is_a($res, 'PEAR_Error'))
return false;
while ($val = $res->fetchRow()) {
$user_list[] = $val;
}
return $user_list;
}
// The getActiveUsers obtains all active users in a given group.
static function getActiveUsers($options = null) {
global $user;
global $i18n;
$mdb2 = getConnection();
if (isset($options['getAllFields']))
$sql = "select u.*, r.name as role_name, r.rank from tt_users u left join tt_roles r on (u.role_id = r.id) where u.group_id = $user->group_id and u.status = 1 order by upper(u.name)";
else
$sql = "select id, name from tt_users where group_id = $user->group_id and status = 1 order by upper(name)";
$res = $mdb2->query($sql);
$user_list = array();
if (is_a($res, 'PEAR_Error'))
return false;
while ($val = $res->fetchRow()) {
// Localize top manager role name, as it is not localized in db.
if ($val['rank'] == 512)
$val['role_name'] = $i18n->get('role.top_manager.label');
$user_list[] = $val;
}
if (isset($options['putSelfFirst'])) {
// Put own entry at the front.
$cnt = count($user_list);
for($i = 0; $i < $cnt; $i++) {
if ($user_list[$i]['id'] == $user->id) {
$self = $user_list[$i]; // Found self.
array_unshift($user_list, $self); // Put own entry at the front.
array_splice($user_list, $i+1, 1); // Remove duplicate.
}
}
}
return $user_list;
}
// The swapRolesWith swaps existing user role with that of another user.
static function swapRolesWith($user_id) {
global $user;
$mdb2 = getConnection();
// Obtain role id for the user we are swapping ourselves with.
$sql = "select u.id, u.role_id from tt_users u left join tt_roles r on (u.role_id = r.id) where u.id = $user_id and u.group_id = $user->group_id and u.status = 1 and r.rank < $user->rank";
$res = $mdb2->query($sql);
if (is_a($res, 'PEAR_Error'))
return false;
$val = $res->fetchRow();
if (!$val['id'] || !$val['role_id'])
return false;
$modified_part = ', modified = now(), modified_ip = '.$mdb2->quote($_SERVER['REMOTE_ADDR']).', modified_by = '.$mdb2->quote($user->id);
// Promote user.
$sql = "update tt_users set role_id = $user->role_id".$modified_part." where id = $user_id and group_id = $user->group_id";
$affected = $mdb2->exec($sql);
if (is_a($affected, 'PEAR_Error')) return false;
// Demote self.
$role_id = $val['role_id'];
$sql = "update tt_users set role_id = $role_id".$modified_part." where id = $user->id and group_id = $user->group_id";
$affected = $mdb2->exec($sql);
if (is_a($affected, 'PEAR_Error')) return false;
return true;
}
// The getUsersForSwap obtains all users a current user can swap roles with.
static function getUsersForSwap() {
global $user;
$mdb2 = getConnection();
$sql = "select u.id, u.name, r.rank, r.rights from tt_users u left join tt_roles r on (u.role_id = r.id) where u.group_id = $user->group_id and u.status = 1 and r.rank < $user->rank order by upper(u.name)";
$res = $mdb2->query($sql);
$user_list = array();
if (is_a($res, 'PEAR_Error'))
return false;
while ($val = $res->fetchRow()) {
$isClient = in_array('track_own_time', explode(',', $val['rights'])) ? 0 : 1; // Clients do not have track_own_time right.
if ($isClient)
continue; // Skip adding clients.
$user_list[] = $val;
}
return $user_list;
}
// The getUsers obtains all active and inactive (but not deleted) users in a group.
static function getUsers() {
global $user;
$mdb2 = getConnection();
$sql = "select id, name from tt_users where group_id = $user->group_id and (status = 1 or status = 0) order by upper(name)";
$res = $mdb2->query($sql);
$user_list = array();
if (is_a($res, 'PEAR_Error'))
return false;
while ($val = $res->fetchRow()) {
$user_list[] = $val;
}
return $user_list;
}
// The getInactiveUsers obtains all inactive users in a group.
static function getInactiveUsers($group_id, $all_fields = false) {
$mdb2 = getConnection();
if ($all_fields)
$sql = "select u.*, r.name as role_name from tt_users u left join tt_roles r on (u.role_id = r.id) where u.group_id = $group_id and u.status = 0 order by upper(u.name)";
else
$sql = "select id, name from tt_users where group_id = $group_id and status = 0 order by upper(name)";
$res = $mdb2->query($sql);
$result = array();
if (!is_a($res, 'PEAR_Error')) {
while ($val = $res->fetchRow()) {
$result[] = $val;
}
return $result;
}
return false;
}
// getActiveProjects - returns an array of active projects for a group.
static function getActiveProjects($group_id)
{
$result = array();
$mdb2 = getConnection();
$sql = "select id, name, description, tasks from tt_projects
where group_id = $group_id and status = 1 order by upper(name)";
$res = $mdb2->query($sql);
$result = array();
if (!is_a($res, 'PEAR_Error')) {
while ($val = $res->fetchRow()) {
$result[] = $val;
}
}
return $result;
}
// getInactiveProjects - returns an array of inactive projects for a group.
static function getInactiveProjects($group_id)
{
$result = array();
$mdb2 = getConnection();
$sql = "select id, name, description, tasks from tt_projects
where group_id = $group_id and status = 0 order by upper(name)";
$res = $mdb2->query($sql);
$result = array();
if (!is_a($res, 'PEAR_Error')) {
while ($val = $res->fetchRow()) {
$result[] = $val;
}
}
return $result;
}
// The getAllProjects obtains all projects in a group.
static function getAllProjects($group_id, $all_fields = false) {
$mdb2 = getConnection();
if ($all_fields)
$sql = "select * from tt_projects where group_id = $group_id order by status, upper(name)";
else
$sql = "select id, name from tt_projects where group_id = $group_id order by status, upper(name)";
$res = $mdb2->query($sql);
$result = array();
if (!is_a($res, 'PEAR_Error')) {
while ($val = $res->fetchRow()) {
$result[] = $val;
}
return $result;
}
return false;
}
// getActiveTasks - returns an array of active tasks for a group.
static function getActiveTasks($group_id)
{
$result = array();
$mdb2 = getConnection();
$sql = "select id, name, description from tt_tasks where group_id = $group_id and status = 1 order by upper(name)";
$res = $mdb2->query($sql);
$result = array();
if (!is_a($res, 'PEAR_Error')) {
while ($val = $res->fetchRow()) {
$result[] = $val;
}
}
return $result;
}
// getInactiveTasks - returns an array of inactive tasks for a group.
static function getInactiveTasks($group_id)
{
$result = array();
$mdb2 = getConnection();
$sql = "select id, name, description from tt_tasks
where group_id = $group_id and status = 0 order by upper(name)";
$res = $mdb2->query($sql);
$result = array();
if (!is_a($res, 'PEAR_Error')) {
while ($val = $res->fetchRow()) {
$result[] = $val;
}
}
return $result;
}
// The getAllTasks obtains all tasks in a group.
static function getAllTasks($group_id, $all_fields = false) {
$mdb2 = getConnection();
if ($all_fields)
$sql = "select * from tt_tasks where group_id = $group_id order by status, upper(name)";
else
$sql = "select id, name from tt_tasks where group_id = $group_id order by status, upper(name)";
$res = $mdb2->query($sql);
$result = array();
if (!is_a($res, 'PEAR_Error')) {
while ($val = $res->fetchRow()) {
$result[] = $val;
}
return $result;
}
return false;
}
// getActiveRolesForUser - returns an array of relevant active roles for user with rank less than self.
// "Relevant" means that client roles are filtered out if Client plugin is disabled.
static function getActiveRolesForUser()
{
global $user;
$result = array();
$mdb2 = getConnection();
$sql = "select id, name, description, rank, rights from tt_roles where group_id = $user->group_id and org_id = $user->org_id and rank < $user->rank and status = 1 order by rank";
$res = $mdb2->query($sql);
$result = array();
if (!is_a($res, 'PEAR_Error')) {
while ($val = $res->fetchRow()) {
$val['is_client'] = in_array('track_own_time', explode(',', $val['rights'])) ? 0 : 1; // Clients do not have data entry right.
if ($val['is_client'] && !$user->isPluginEnabled('cl'))
continue; // Skip adding a client role.
$result[] = $val;
}
}
return $result;
}
// getActiveRoles - returns an array of active roles for a group.
static function getActiveRoles($group_id)
{
$result = array();
$mdb2 = getConnection();
$sql = "select id, name, description, rank, rights from tt_roles where group_id = $group_id and status = 1 order by rank";
$res = $mdb2->query($sql);
$result = array();
if (!is_a($res, 'PEAR_Error')) {
while ($val = $res->fetchRow()) {
$val['is_client'] = in_array('track_own_time', explode(',', $val['rights'])) ? 0 : 1; // Clients do not have track_own_time right.
$result[] = $val;
}
}
return $result;
}
// getInactiveRoles - returns an array of inactive roles for a group.
static function getInactiveRoles($group_id)
{
$result = array();
$mdb2 = getConnection();
$sql = "select id, name, rank, description from tt_roles
where group_id = $group_id and status = 0 order by rank";
$res = $mdb2->query($sql);
$result = array();
if (!is_a($res, 'PEAR_Error')) {
while ($val = $res->fetchRow()) {
$result[] = $val;
}
}
return $result;
}
// getInactiveRolesForUser - returns an array of relevant active roles for user with rank less than self.
// "Relevant" means that client roles are filtered out if Client plugin is disabled.
static function getInactiveRolesForUser()
{
global $user;
$result = array();
$mdb2 = getConnection();
$sql = "select id, name, description, rank, rights from tt_roles where group_id = $user->group_id and org_id = $user->org_id and rank < $user->rank and status = 0 order by rank";
$res = $mdb2->query($sql);
$result = array();
if (!is_a($res, 'PEAR_Error')) {
while ($val = $res->fetchRow()) {
$val['is_client'] = in_array('track_own_time', explode(',', $val['rights'])) ? 0 : 1; // Clients do not have data entry right.
if ($val['is_client'] && !$user->isPluginEnabled('cl'))
continue; // Skip adding a client role.
$result[] = $val;
}
}
return $result;
}
// The getActiveClients returns an array of active clients for a group.
static function getActiveClients($group_id, $all_fields = false)
{
$result = array();
$mdb2 = getConnection();
if ($all_fields)
$sql = "select * from tt_clients where group_id = $group_id and status = 1 order by upper(name)";
else
$sql = "select id, name from tt_clients where group_id = $group_id and status = 1 order by upper(name)";
$res = $mdb2->query($sql);
$result = array();
if (!is_a($res, 'PEAR_Error')) {
while ($val = $res->fetchRow()) {
$result[] = $val;
}
}
return $result;
}
// The getInactiveClients returns an array of inactive clients for a group.
static function getInactiveClients($group_id, $all_fields = false)
{
$result = array();
$mdb2 = getConnection();
if ($all_fields)
$sql = "select * from tt_clients where group_id = $group_id and status = 0 order by upper(name)";
else
$sql = "select id, name from tt_clients where group_id = $group_id and status = 0 order by upper(name)";
$res = $mdb2->query($sql);
$result = array();
if (!is_a($res, 'PEAR_Error')) {
while ($val = $res->fetchRow()) {
$result[] = $val;
}
}
return $result;
}
// The getAllClients obtains all clients in a group.
static function getAllClients($group_id, $all_fields = false) {
$mdb2 = getConnection();
if ($all_fields)
$sql = "select * from tt_clients where group_id = $group_id order by status, upper(name)";
else
$sql = "select id, name from tt_clients where group_id = $group_id order by status, upper(name)";
$res = $mdb2->query($sql);
$result = array();
if (!is_a($res, 'PEAR_Error')) {
while ($val = $res->fetchRow()) {
$result[] = $val;
}
return $result;
}
return false;
}
// The getActiveInvoices returns an array of active invoices for a group.
static function getActiveInvoices($localizeDates = true)
{
global $user;
$addPaidStatus = $user->isPluginEnabled('ps');
$result = array();
$mdb2 = getConnection();
if ($user->isClient())
$client_part = " and i.client_id = $user->client_id";
$sql = "select i.id, i.name, i.date, i.client_id, i.status, c.name as client_name from tt_invoices i
left join tt_clients c on (c.id = i.client_id)
where i.status = 1 and i.group_id = $user->group_id $client_part order by i.name";
$res = $mdb2->query($sql);
$result = array();
if (!is_a($res, 'PEAR_Error')) {
$dt = new DateAndTime(DB_DATEFORMAT);
while ($val = $res->fetchRow()) {
if ($localizeDates) {
$dt->parseVal($val['date']);
$val['date'] = $dt->toString($user->date_format);
}
if ($addPaidStatus)
$val['paid'] = ttInvoiceHelper::isPaid($val['id']);
$result[] = $val;
}
}
return $result;
}
// The getAllInvoices returns an array of all invoices for a group.
static function getAllInvoices()
{
global $user;
$result = array();
$mdb2 = getConnection();
$sql = "select * from tt_invoices where group_id = $user->group_id";
$res = $mdb2->query($sql);
$result = array();
if (!is_a($res, 'PEAR_Error')) {
$dt = new DateAndTime(DB_DATEFORMAT);
while ($val = $res->fetchRow()) {
$result[] = $val;
}
}
return $result;
}
// The getRecentInvoices returns an array of recent invoices (max 3) for a client.
static function getRecentInvoices($group_id, $client_id)
{
global $user;
$result = array();
$mdb2 = getConnection();
$sql = "select i.id, i.name from tt_invoices i
left join tt_clients c on (c.id = i.client_id)
where i.group_id = $group_id and i.status = 1 and c.id = $client_id
order by i.id desc limit 3";
$res = $mdb2->query($sql);
$result = array();
if (!is_a($res, 'PEAR_Error')) {
$dt = new DateAndTime(DB_DATEFORMAT);
while ($val = $res->fetchRow()) {
$result[] = $val;
}
}
return $result;
}
// getUserToProjectBinds - obtains all user to project binds for a group.
static function getUserToProjectBinds($group_id) {
$mdb2 = getConnection();
$result = array();
$sql = "select * from tt_user_project_binds where user_id in (select id from tt_users where group_id = $group_id) order by user_id, status, project_id";
$res = $mdb2->query($sql);
$result = array();
if (!is_a($res, 'PEAR_Error')) {
while ($val = $res->fetchRow()) {
$result[] = $val;
}
return $result;
}
return false;
}
// The getAllCustomFields obtains all custom fields in a group.
static function getAllCustomFields($group_id) {
$mdb2 = getConnection();
$sql = "select * from tt_custom_fields where group_id = $group_id order by status";
$res = $mdb2->query($sql);
$result = array();
if (!is_a($res, 'PEAR_Error')) {
while ($val = $res->fetchRow()) {
$result[] = $val;
}
return $result;
}
return false;
}
// The getAllCustomFieldOptions obtains all custom field options in a group.
static function getAllCustomFieldOptions($group_id) {
$mdb2 = getConnection();
$sql = "select * from tt_custom_field_options where field_id in (select id from tt_custom_fields where group_id = $group_id) order by id";
$res = $mdb2->query($sql);
$result = array();
if (!is_a($res, 'PEAR_Error')) {
while ($val = $res->fetchRow()) {
$result[] = $val;
}
return $result;
}
return false;
}
// The getCustomFieldLog obtains all custom field log entries for a group.
static function getCustomFieldLog($group_id) {
$mdb2 = getConnection();
$sql = "select * from tt_custom_field_log where field_id in (select id from tt_custom_fields where group_id = $group_id) order by id";
$res = $mdb2->query($sql);
$result = array();
if (!is_a($res, 'PEAR_Error')) {
while ($val = $res->fetchRow()) {
$result[] = $val;
}
return $result;
}
return false;
}
// getFavReports - obtains all favorite reports for all users in a group.
static function getFavReports($group_id) {
$mdb2 = getConnection();
$result = array();
$sql = "select * from tt_fav_reports where user_id in (select id from tt_users where group_id = $group_id)";
$res = $mdb2->query($sql);
$result = array();
if (!is_a($res, 'PEAR_Error')) {
while ($val = $res->fetchRow()) {
$result[] = $val;
}
return $result;
}
return false;
}
// getExpenseItems - obtains all expense items for all users in a group.
static function getExpenseItems($group_id) {
$mdb2 = getConnection();
$result = array();
$sql = "select * from tt_expense_items where user_id in (select id from tt_users where group_id = $group_id)";
$res = $mdb2->query($sql);
$result = array();
if (!is_a($res, 'PEAR_Error')) {
while ($val = $res->fetchRow()) {
$result[] = $val;
}
return $result;
}
return false;
}
// getPredefinedExpenses - obtains predefined expenses for a group.
static function getPredefinedExpenses($group_id) {
global $user;
$replaceDecimalMark = ('.' != $user->decimal_mark);
$mdb2 = getConnection();
$result = array();
$sql = "select id, name, cost from tt_predefined_expenses where group_id = $group_id";
$res = $mdb2->query($sql);
$result = array();
if (!is_a($res, 'PEAR_Error')) {
while ($val = $res->fetchRow()) {
if ($replaceDecimalMark)
$val['cost'] = str_replace('.', $user->decimal_mark, $val['cost']);
$result[] = $val;
}
return $result;
}
return false;
}
// getNotifications - obtains notification descriptions for a group.
static function getNotifications($group_id) {
$mdb2 = getConnection();
$result = array();
$sql = "select c.id, c.cron_spec, c.email, c.report_condition, fr.name from tt_cron c
left join tt_fav_reports fr on (fr.id = c.report_id)
where c.group_id = $group_id and c.status = 1 and fr.status = 1";
$res = $mdb2->query($sql);
$result = array();
if (!is_a($res, 'PEAR_Error')) {
while ($val = $res->fetchRow()) {
$result[] = $val;
}
return $result;
}
return false;
}
// getMonthlyQuotas - obtains monthly quotas for a group.
static function getMonthlyQuotas($group_id) {
$mdb2 = getConnection();
$result = array();
$sql = "select year, month, minutes from tt_monthly_quotas where group_id = $group_id";
$res = $mdb2->query($sql);
$result = array();
if (!is_a($res, 'PEAR_Error')) {
while ($val = $res->fetchRow()) {
$result[] = $val;
}
return $result;
}
return false;
}
// The delete function permanently deletes all data for a group.
static function delete($group_id) {
$mdb2 = getConnection();
// Delete users.
$sql = "select id from tt_users where group_id = $group_id";
$res = $mdb2->query($sql);
if (is_a($res, 'PEAR_Error')) return false;
while ($val = $res->fetchRow()) {
$user_id = $val['id'];
if (!ttUserHelper::delete($user_id)) return false;
}
// Delete tasks.
if (!ttTeamHelper::deleteTasks($group_id)) return false;
// Delete client to project binds.
$sql = "delete from tt_client_project_binds where client_id in (select id from tt_clients where group_id = $group_id)";
$affected = $mdb2->exec($sql);
if (is_a($affected, 'PEAR_Error')) return false;
// Delete projects.
$sql = "delete from tt_projects where group_id = $group_id";
$affected = $mdb2->exec($sql);
if (is_a($affected, 'PEAR_Error')) return false;
// Delete clients.
$sql = "delete from tt_clients where group_id = $group_id";
$affected = $mdb2->exec($sql);
if (is_a($affected, 'PEAR_Error')) return false;
// Delete invoices.
$sql = "delete from tt_invoices where group_id = $group_id";
$affected = $mdb2->exec($sql);
if (is_a($affected, 'PEAR_Error')) return false;
// Delete custom fields.
if (!ttTeamHelper::deleteCustomFields($group_id)) return false;
// Delete roles.
$sql = "delete from tt_roles where group_id = $group_id";
$affected = $mdb2->exec($sql);
if (is_a($affected, 'PEAR_Error')) return false;
// Delete predefined expenses.
$sql = "delete from tt_predefined_expenses where group_id = $group_id";
$affected = $mdb2->exec($sql);
if (is_a($affected, 'PEAR_Error')) return false;
// Delete monthly quotas.
$sql = "delete from tt_monthly_quotas where group_id = $group_id";
$affected = $mdb2->exec($sql);
if (is_a($affected, 'PEAR_Error')) return false;
// Delete group.
$sql = "delete from tt_groups where id = $group_id";
$affected = $mdb2->exec($sql);
if (is_a($affected, 'PEAR_Error')) return false;
return true;
}
// The deleteTasks deletes all tasks and task binds for an inactive group.
static function deleteTasks($group_id) {
$mdb2 = getConnection();
$sql = "select id from tt_tasks where group_id = $group_id";
$res = $mdb2->query($sql);
if (is_a($res, 'PEAR_Error')) return false;
while ($val = $res->fetchRow()) {
// Delete task binds.
$task_id = $val['id'];
$sql = "delete from tt_project_task_binds where task_id = $task_id";
$affected = $mdb2->exec($sql);
if (is_a($affected, 'PEAR_Error')) return false;
// Delete task.
$sql = "delete from tt_tasks where id = $task_id";
$affected = $mdb2->exec($sql);
if (is_a($affected, 'PEAR_Error')) return false;
}
return true;
}
// The deleteCustomFields cleans up tt_custom_field_log, tt_custom_field_options and tt_custom_fields tables for an inactive group.
static function deleteCustomFields($group_id) {
$mdb2 = getConnection();
$sql = "select id from tt_custom_fields where group_id = $group_id";
$res = $mdb2->query($sql);
if (is_a($res, 'PEAR_Error')) return false;
while ($val = $res->fetchRow()) {
$field_id = $val['id'];
// Clean up tt_custom_field_log.
$sql = "delete from tt_custom_field_log where field_id = $field_id";
$affected = $mdb2->exec($sql);
if (is_a($affected, 'PEAR_Error')) return false;
// Clean up tt_custom_field_options.
$sql = "delete from tt_custom_field_options where field_id = $field_id";
$affected = $mdb2->exec($sql);
if (is_a($affected, 'PEAR_Error')) return false;
// Delete custom field.
$sql = "delete from tt_custom_fields where id = $field_id";
$affected = $mdb2->exec($sql);
if (is_a($affected, 'PEAR_Error')) return false;
}
return true;
}
}