2 // +----------------------------------------------------------------------+
 
   3 // | Anuko Time Tracker
 
   4 // +----------------------------------------------------------------------+
 
   5 // | Copyright (c) Anuko International Ltd. (https://www.anuko.com)
 
   6 // +----------------------------------------------------------------------+
 
   7 // | LIBERAL FREEWARE LICENSE: This source code document may be used
 
   8 // | by anyone for any purpose, and freely redistributed alone or in
 
   9 // | combination with other software, provided that the license is obeyed.
 
  11 // | There are only two ways to violate the license:
 
  13 // | 1. To redistribute this code in source form, with the copyright
 
  14 // |    notice or license removed or altered. (Distributing in compiled
 
  15 // |    forms without embedded copyright notices is permitted).
 
  17 // | 2. To redistribute modified versions of this code in *any* form
 
  18 // |    that bears insufficient indications that the modifications are
 
  19 // |    not the work of the original author(s).
 
  21 // | This license applies to this document only, not any other software
 
  22 // | that it may be combined with.
 
  24 // +----------------------------------------------------------------------+
 
  26 // | https://www.anuko.com/time_tracker/credits.htm
 
  27 // +----------------------------------------------------------------------+
 
  29 import('ttUserHelper');
 
  30 import('DateAndTime');
 
  32 // Class ttTeamHelper - contains helper functions that operate with teams.
 
  35   // The getUserCount function returns number of people in team.
 
  36   static function getUserCount($team_id) {
 
  37     $mdb2 = getConnection();
 
  39     $sql = "select count(id) as cnt from tt_users where team_id = $team_id and status = 1";
 
  40     $res = $mdb2->query($sql);
 
  42     if (!is_a($res, 'PEAR_Error')) {
 
  43       $val = $res->fetchRow();
 
  49   // The getUsersForClient obtains all active and inactive users in a team that are relevant to a client.
 
  50   static function getUsersForClient() {
 
  52     $mdb2 = getConnection();
 
  54     $sql = "select u.id, u.name from tt_user_project_binds upb
 
  55       inner join tt_client_project_binds cpb on (upb.project_id = cpb.project_id and cpb.client_id = $user->client_id)
 
  56       inner join tt_users u on (u.id = upb.user_id)
 
  57       where (u.status = 1 or u.status = 0)
 
  59       order by upper(u.name)";
 
  60     $res = $mdb2->query($sql);
 
  62     if (is_a($res, 'PEAR_Error'))
 
  64     while ($val = $res->fetchRow()) {
 
  70   // The getActiveUsers obtains all active users in a given team.
 
  71   static function getActiveUsers($options = null) {
 
  73     $mdb2 = getConnection();
 
  75     if (isset($options['getAllFields']))
 
  76       $sql = "select * from tt_users where team_id = $user->team_id and status = 1 order by upper(name)";
 
  78       $sql = "select id, name from tt_users where team_id = $user->team_id and status = 1 order by upper(name)";
 
  79     $res = $mdb2->query($sql);
 
  81     if (is_a($res, 'PEAR_Error'))
 
  83     while ($val = $res->fetchRow()) {
 
  87     if (isset($options['putSelfFirst'])) {
 
  88       // Put own entry at the front.
 
  89       $cnt = count($user_list);
 
  90       for($i = 0; $i < $cnt; $i++) {
 
  91         if ($user_list[$i]['id'] == $user->id) {
 
  92           $self = $user_list[$i]; // Found self.
 
  93           array_unshift($user_list, $self); // Put own entry at the front.
 
  94           array_splice($user_list, $i+1, 1); // Remove duplicate.
 
 101   // The getUsers obtains all active and inactive (but not deleted) users in a given team.
 
 102   static function getUsers() {
 
 104     $mdb2 = getConnection();
 
 106     $sql = "select id, name from tt_users where team_id = $user->team_id and (status = 1 or status = 0) order by upper(name)";
 
 107     $res = $mdb2->query($sql);
 
 108     $user_list = array();
 
 109     if (is_a($res, 'PEAR_Error'))
 
 111     while ($val = $res->fetchRow()) {
 
 118   // The getInactiveUsers obtains all inactive users in a given team.
 
 119   static function getInactiveUsers($team_id, $all_fields = false) {
 
 120     $mdb2 = getConnection();
 
 123       $sql = "select * from tt_users where team_id = $team_id and status = 0 order by upper(name)";
 
 125       $sql = "select id, name from tt_users where team_id = $team_id and status = 0 order by upper(name)";
 
 126     $res = $mdb2->query($sql);
 
 128     if (!is_a($res, 'PEAR_Error')) {
 
 129       while ($val = $res->fetchRow()) {
 
 137   // The getAllUsers obtains all users in a given team.
 
 138   static function getAllUsers($team_id, $all_fields = false) {
 
 139     $mdb2 = getConnection();
 
 142       $sql = "select * from tt_users where team_id = $team_id order by upper(name)";
 
 144       $sql = "select id, name from tt_users where team_id = $team_id order by upper(name)";
 
 145     $res = $mdb2->query($sql);
 
 147     if (!is_a($res, 'PEAR_Error')) {
 
 148       while ($val = $res->fetchRow()) {
 
 156   // getActiveProjects - returns an array of active projects for team.
 
 157   static function getActiveProjects($team_id)
 
 160     $mdb2 = getConnection();
 
 162     $sql = "select id, name, description, tasks from tt_projects
 
 163       where team_id = $team_id and status = 1 order by upper(name)";
 
 164     $res = $mdb2->query($sql);
 
 166     if (!is_a($res, 'PEAR_Error')) {
 
 167       while ($val = $res->fetchRow()) {
 
 174   // getInactiveProjects - returns an array of inactive projects for team.
 
 175   static function getInactiveProjects($team_id)
 
 178     $mdb2 = getConnection();
 
 180     $sql = "select id, name, description, tasks from tt_projects
 
 181       where team_id = $team_id and status = 0 order by upper(name)";
 
 182     $res = $mdb2->query($sql);
 
 184     if (!is_a($res, 'PEAR_Error')) {
 
 185       while ($val = $res->fetchRow()) {
 
 192   // The getAllProjects obtains all projects in a given team.
 
 193   static function getAllProjects($team_id, $all_fields = false) {
 
 194     $mdb2 = getConnection();
 
 197       $sql = "select * from tt_projects where team_id = $team_id order by status, upper(name)";
 
 199       $sql = "select id, name from tt_projects where team_id = $team_id order by status, upper(name)";
 
 200     $res = $mdb2->query($sql);
 
 202     if (!is_a($res, 'PEAR_Error')) {
 
 203       while ($val = $res->fetchRow()) {
 
 211   // getActiveTasks - returns an array of active tasks for team.
 
 212   static function getActiveTasks($team_id)
 
 215     $mdb2 = getConnection();
 
 217     $sql = "select id, name, description from tt_tasks where team_id = $team_id and status = 1 order by upper(name)";
 
 218     $res = $mdb2->query($sql);
 
 220     if (!is_a($res, 'PEAR_Error')) {
 
 221       while ($val = $res->fetchRow()) {
 
 228   // getInactiveTasks - returns an array of inactive tasks for team.
 
 229   static function getInactiveTasks($team_id)
 
 232     $mdb2 = getConnection();
 
 234     $sql = "select id, name, description from tt_tasks
 
 235       where team_id = $team_id and status = 0 order by upper(name)";
 
 236     $res = $mdb2->query($sql);
 
 238     if (!is_a($res, 'PEAR_Error')) {
 
 239       while ($val = $res->fetchRow()) {
 
 246   // The getAllTasks obtains all tasks in a given team.
 
 247   static function getAllTasks($team_id, $all_fields = false) {
 
 248     $mdb2 = getConnection();
 
 251       $sql = "select * from tt_tasks where team_id = $team_id order by status, upper(name)";
 
 253       $sql = "select id, name from tt_tasks where team_id = $team_id order by status, upper(name)";
 
 254     $res = $mdb2->query($sql);
 
 256     if (!is_a($res, 'PEAR_Error')) {
 
 257       while ($val = $res->fetchRow()) {
 
 265   // The getActiveClients returns an array of active clients for team.
 
 266   static function getActiveClients($team_id, $all_fields = false)
 
 269     $mdb2 = getConnection();
 
 272       $sql = "select * from tt_clients where team_id = $team_id and status = 1 order by upper(name)";
 
 274       $sql = "select id, name from tt_clients where team_id = $team_id and status = 1 order by upper(name)";
 
 276     $res = $mdb2->query($sql);
 
 278     if (!is_a($res, 'PEAR_Error')) {
 
 279       while ($val = $res->fetchRow()) {
 
 286   // The getInactiveClients returns an array of inactive clients for team.
 
 287   static function getInactiveClients($team_id, $all_fields = false)
 
 290     $mdb2 = getConnection();
 
 293       $sql = "select * from tt_clients where team_id = $team_id and status = 0 order by upper(name)";
 
 295       $sql = "select id, name from tt_clients where team_id = $team_id and status = 0 order by upper(name)";
 
 297     $res = $mdb2->query($sql);
 
 299     if (!is_a($res, 'PEAR_Error')) {
 
 300       while ($val = $res->fetchRow()) {
 
 307   // The getAllClients obtains all clients in a given team.
 
 308   static function getAllClients($team_id, $all_fields = false) {
 
 309     $mdb2 = getConnection();
 
 312       $sql = "select * from tt_clients where team_id = $team_id order by status, upper(name)";
 
 314       $sql = "select id, name from tt_clients where team_id = $team_id order by status, upper(name)";
 
 316     $res = $mdb2->query($sql);
 
 318     if (!is_a($res, 'PEAR_Error')) {
 
 319       while ($val = $res->fetchRow()) {
 
 327   // The getActiveInvoices returns an array of active invoices for team.
 
 328   static function getActiveInvoices($localizeDates = true)
 
 333     $mdb2 = getConnection();
 
 335     if (ROLE_CLIENT == $user->role && $user->client_id)
 
 336       $client_part = " and i.client_id = $user->client_id";
 
 338     $sql = "select i.id, i.name, i.date, i.client_id, i.status, c.name as client_name from tt_invoices i
 
 339       left join tt_clients c on (c.id = i.client_id)
 
 340       where i.status = 1 and i.team_id = $user->team_id $client_part order by i.name";
 
 341     $res = $mdb2->query($sql);
 
 343     if (!is_a($res, 'PEAR_Error')) {
 
 344       $dt = new DateAndTime(DB_DATEFORMAT);
 
 345       while ($val = $res->fetchRow()) {
 
 346         if ($localizeDates) {
 
 347           $dt->parseVal($val['date']);
 
 348           $val['date'] = $dt->toString($user->date_format);
 
 356   // The getAllInvoices returns an array of all invoices for team.
 
 357   static function getAllInvoices()
 
 362     $mdb2 = getConnection();
 
 364     $sql = "select * from tt_invoices where team_id = $user->team_id";
 
 365     $res = $mdb2->query($sql);
 
 367     if (!is_a($res, 'PEAR_Error')) {
 
 368       $dt = new DateAndTime(DB_DATEFORMAT);
 
 369       while ($val = $res->fetchRow()) {
 
 376   // The getRecentInvoices returns an array of recent invoices (max 3) for a client.
 
 377   static function getRecentInvoices($team_id, $client_id)
 
 382     $mdb2 = getConnection();
 
 384     $sql = "select i.id, i.name from tt_invoices i
 
 385       left join tt_clients c on (c.id = i.client_id)
 
 386       where i.team_id = $team_id and i.status = 1 and c.id = $client_id
 
 387       order by i.id desc limit 3";
 
 388     $res = $mdb2->query($sql);
 
 390     if (!is_a($res, 'PEAR_Error')) {
 
 391       $dt = new DateAndTime(DB_DATEFORMAT);
 
 392       while ($val = $res->fetchRow()) {
 
 399   // getUserToProjectBinds - obtains all user to project binds for a team.
 
 400   static function getUserToProjectBinds($team_id) {
 
 401     $mdb2 = getConnection();
 
 404     $sql = "select * from tt_user_project_binds where user_id in (select id from tt_users where team_id = $team_id) order by user_id, status, project_id";
 
 405     $res = $mdb2->query($sql);
 
 407     if (!is_a($res, 'PEAR_Error')) {
 
 408       while ($val = $res->fetchRow()) {
 
 416   // The getAllCustomFields obtains all custom fields in a given team.
 
 417   static function getAllCustomFields($team_id) {
 
 418     $mdb2 = getConnection();
 
 420     $sql = "select * from tt_custom_fields where team_id = $team_id order by status";
 
 422     $res = $mdb2->query($sql);
 
 424     if (!is_a($res, 'PEAR_Error')) {
 
 425       while ($val = $res->fetchRow()) {
 
 433   // The getAllCustomFieldOptions obtains all custom field options in a given team.
 
 434   static function getAllCustomFieldOptions($team_id) {
 
 435     $mdb2 = getConnection();
 
 437     $sql = "select * from tt_custom_field_options where field_id in (select id from tt_custom_fields where team_id = $team_id) order by id";
 
 439     $res = $mdb2->query($sql);
 
 441     if (!is_a($res, 'PEAR_Error')) {
 
 442       while ($val = $res->fetchRow()) {
 
 450   // The getCustomFieldLog obtains all custom field log entries for a given team.
 
 451   static function getCustomFieldLog($team_id) {
 
 452     $mdb2 = getConnection();
 
 454     $sql = "select * from tt_custom_field_log where field_id in (select id from tt_custom_fields where team_id = $team_id) order by id";
 
 456     $res = $mdb2->query($sql);
 
 458     if (!is_a($res, 'PEAR_Error')) {
 
 459       while ($val = $res->fetchRow()) {
 
 467   // getFavReports - obtains all favorite reports for all users in team.
 
 468   static function getFavReports($team_id) {
 
 469     $mdb2 = getConnection();
 
 472     $sql = "select * from tt_fav_reports where user_id in (select id from tt_users where team_id = $team_id)";
 
 473     $res = $mdb2->query($sql);
 
 475     if (!is_a($res, 'PEAR_Error')) {
 
 476       while ($val = $res->fetchRow()) {
 
 484   // getExpenseItems - obtains all expense items for all users in team.
 
 485   static function getExpenseItems($team_id) {
 
 486     $mdb2 = getConnection();
 
 489     $sql = "select * from tt_expense_items where user_id in (select id from tt_users where team_id = $team_id)";
 
 490     $res = $mdb2->query($sql);
 
 492     if (!is_a($res, 'PEAR_Error')) {
 
 493       while ($val = $res->fetchRow()) {
 
 501   // getPredefinedExpenses - obtains predefined expenses for team.
 
 502   static function getPredefinedExpenses($team_id) {
 
 504     $replaceDecimalMark = ('.' != $user->decimal_mark);
 
 506     $mdb2 = getConnection();
 
 509     $sql = "select id, name, cost from tt_predefined_expenses where team_id = $team_id";
 
 510     $res = $mdb2->query($sql);
 
 512     if (!is_a($res, 'PEAR_Error')) {
 
 513       while ($val = $res->fetchRow()) {
 
 514         if ($replaceDecimalMark)
 
 515           $val['cost'] = str_replace('.', $user->decimal_mark, $val['cost']);
 
 523   // getNotifications - obtains notification descriptions for team.
 
 524   static function getNotifications($team_id) {
 
 525     $mdb2 = getConnection();
 
 528     $sql = "select c.id, c.cron_spec, c.email, c.report_condition, fr.name from tt_cron c
 
 529       left join tt_fav_reports fr on (fr.id = c.report_id)
 
 530       where c.team_id = $team_id and c.status = 1 and fr.status = 1";
 
 531     $res = $mdb2->query($sql);
 
 533     if (!is_a($res, 'PEAR_Error')) {
 
 534       while ($val = $res->fetchRow()) {
 
 542   // getMonthlyQuotas - obtains monthly quotas for team.
 
 543   static function getMonthlyQuotas($team_id) {
 
 544     $mdb2 = getConnection();
 
 547     $sql = "select year, month, quota from tt_monthly_quotas where team_id = $team_id";
 
 548     $res = $mdb2->query($sql);
 
 550     if (!is_a($res, 'PEAR_Error')) {
 
 551       while ($val = $res->fetchRow()) {
 
 559   // The getTeams function returns an array of all active teams on the server.
 
 560   static function getTeams() {
 
 562     $mdb2 = getConnection();
 
 564     $sql =  "select id, name, lang, timestamp from tt_teams where status = 1 order by id desc";
 
 565     $res = $mdb2->query($sql);
 
 567     if (!is_a($res, 'PEAR_Error')) {
 
 568       while ($val = $res->fetchRow()) {
 
 569         $val['date'] = substr($val['timestamp'], 0, 10); // Strip the time.
 
 577   // The markDeleted function marks the team and everything in it as deleted.
 
 578   static function markDeleted($team_id) {
 
 580     // Iterate through team users and mark them as deleted.
 
 581     $users = ttTeamHelper::getAllUsers($team_id);
 
 582     foreach ($users as $one_user) {
 
 583       if (!ttUserHelper::markDeleted($one_user['id'])) return false;
 
 586     // Mark tasks deleted.
 
 587     if (!ttTeamHelper::markTasksDeleted($team_id)) return false;
 
 589     $mdb2 = getConnection();
 
 591     // Mark projects deleted.
 
 592     $sql = "update tt_projects set status = NULL where team_id = $team_id";
 
 593     $affected = $mdb2->exec($sql);
 
 594     if (is_a($affected, 'PEAR_Error')) return false;
 
 596     // Mark clients deleted.
 
 597     $sql = "update tt_clients set status = NULL where team_id = $team_id";
 
 598     $affected = $mdb2->exec($sql);
 
 599     if (is_a($affected, 'PEAR_Error')) return false;
 
 601     // Mark custom fields deleted.
 
 602     $sql = "update tt_custom_fields set status = NULL where team_id = $team_id";
 
 603     $affected = $mdb2->exec($sql);
 
 604     if (is_a($affected, 'PEAR_Error')) return false;
 
 606     // Mark team deleted.
 
 607     $sql = "update tt_teams set status = NULL where id = $team_id";
 
 608     $affected = $mdb2->exec($sql);
 
 609     if (is_a($affected, 'PEAR_Error')) return false;
 
 614   // The getTeamDetails function returns team details.
 
 615   static function getTeamDetails($team_id) {
 
 617     $mdb2 = getConnection();
 
 619     $role_manager = ROLE_MANAGER;
 
 620     $sql = "select t.name as team_name, u.id as manager_id, u.name as manager_name, u.login as manager_login, u.email as manager_email
 
 622       inner join tt_users u on (u.team_id = t.id and u.role = $role_manager)
 
 623       where t.id = $team_id";
 
 625     $res = $mdb2->query($sql);
 
 626     if (!is_a($res, 'PEAR_Error')) {
 
 627       $val = $res->fetchRow();
 
 634   // The insert function creates a new team.
 
 635   static function insert($fields) {
 
 637     $mdb2 = getConnection();
 
 639     $lock_spec = $fields['lock_spec'];
 
 640     if ($lock_spec !== null) {
 
 641       $lockspec_f = ', lock_spec';
 
 642       $lockspec_v = ', ' . $mdb2->quote($lock_spec);
 
 648     $lang = $fields['lang'];
 
 654     $decimal_mark = $fields['decimal_mark'];
 
 655     if ($decimal_mark !== null) {
 
 656       $decimal_mark_f = ', decimal_mark';
 
 657       $decimal_mark_v = ', ' . $mdb2->quote($decimal_mark);
 
 659       $decimal_mark_f = '';
 
 660       $decimal_mark_v = '';
 
 663     $date_format = $fields['date_format'];
 
 664     if ($date_format !== null) {
 
 665       $date_format_f = ', date_format';
 
 666       $date_format_v = ', ' . $mdb2->quote($date_format);
 
 667     } elseif (defined('DATE_FORMAT_DEFAULT')) {
 
 668       $date_format_f = ', date_format';
 
 669       $date_format_v = ', ' . $mdb2->quote(DATE_FORMAT_DEFAULT);
 
 675     $time_format = $fields['time_format'];
 
 676     if ($time_format !== null) {
 
 677       $time_format_f = ', time_format';
 
 678       $time_format_v = ', ' . $mdb2->quote($time_format);
 
 679     } elseif (defined('TIME_FORMAT_DEFAULT')) {
 
 680       $time_format_f = ', time_format';
 
 681       $time_format_v = ', ' . $mdb2->quote(TIME_FORMAT_DEFAULT);
 
 687     $week_start = $fields['week_start'];
 
 688     if ($week_start !== null) {
 
 689       $week_start_f = ', week_start';
 
 690       $week_start_v = ', ' . (int)$week_start;
 
 691     } elseif (defined('WEEK_START_DEFAULT')) {
 
 692       $week_start_f = ', week_start';
 
 693       $week_start_v = ', ' . (int)WEEK_START_DEFAULT;
 
 699     $plugins = $fields['plugins'];
 
 700     if ($plugins !== null) {
 
 701       $plugins_f = ', plugins';
 
 702       $plugins_v = ', ' . $mdb2->quote($plugins);
 
 708     $tracking_mode = $fields['tracking_mode'];
 
 709     if ($tracking_mode !== null) {
 
 710       $tracking_mode_f = ', tracking_mode';
 
 711       $tracking_mode_v = ', ' . (int)$tracking_mode;
 
 713       $tracking_mode_f = '';
 
 714       $tracking_mode_v = '';
 
 717     $task_required = $fields['task_required'];
 
 718     if ($task_required !== null) {
 
 719       $task_required_f = ', task_required';
 
 720       $task_required_v = ', ' . (int)$task_required;
 
 722       $task_required_f = '';
 
 723       $task_required_v = '';
 
 726     $record_type = $fields['record_type'];
 
 727     if ($record_type !== null) {
 
 728       $record_type_f = ', record_type';
 
 729       $record_type_v = ', ' . (int)$record_type;
 
 735     $uncompleted_indicators = $fields['uncompleted_indicators'];
 
 736     if ($uncompleted_indicators !== null) {
 
 737       $uncompleted_indicators_f = ', uncompleted_indicators';
 
 738       $uncompleted_indicators_v = ', ' . (int)$uncompleted_indicators;
 
 740       $uncompleted_indicators_f = '';
 
 741       $uncompleted_indicators_v = '';
 
 744     $workday_hours = $fields['workday_hours'];
 
 745     if ($workday_hours !== null) {
 
 746       $workday_hours_f = ', workday_hours';
 
 747       $workday_hours_v = ', ' . (int)$workday_hours;
 
 749       $workday_hours_f = '';
 
 750       $workday_hours_v = '';
 
 753     $sql = "insert into tt_teams (name, address, currency $lockspec_f, lang $decimal_mark_f $date_format_f $time_format_f $week_start_f $plugins_f $tracking_mode_f $task_required_f $record_type_f $uncompleted_indicators_f $workday_hours_f)
 
 754       values(".$mdb2->quote(trim($fields['name'])).
 
 755       ", ".$mdb2->quote(trim($fields['address'])).
 
 756       ", ".$mdb2->quote(trim($fields['currency']))." $lockspec_v, ".$mdb2->quote($lang).
 
 757       "$decimal_mark_v $date_format_v $time_format_v $week_start_v $plugins_v $tracking_mode_v $task_required_v $record_type_v $uncompleted_indicators_v $workday_hours_v)";
 
 758     $affected = $mdb2->exec($sql);
 
 760     if (!is_a($affected, 'PEAR_Error')) {
 
 761       $team_id = $mdb2->lastInsertID('tt_teams', 'id');
 
 768   // The update function updates team information.
 
 769   static function update($team_id, $fields)
 
 771     $mdb2 = getConnection();
 
 772     $name_part = 'name = '.$mdb2->quote($fields['name']);
 
 776     $decimal_mark_part = '';
 
 777     $date_format_part = '';
 
 778     $time_format_part = '';
 
 779     $week_start_part = '';
 
 780     $tracking_mode_part = '';
 
 781     $task_required_part = ' , task_required = '.intval($fields['task_required']);
 
 782     $record_type_part = '';
 
 783     $uncompleted_indicators_part = '';
 
 784     $bcc_email_part = '';
 
 786     $lock_spec_part = '';
 
 787     $workday_hours_part = '';
 
 789     if (isset($fields['address'])) $addr_part = ', address = '.$mdb2->quote($fields['address']);
 
 790     if (isset($fields['currency'])) $currency_part = ', currency = '.$mdb2->quote($fields['currency']);
 
 791     if (isset($fields['lang'])) $lang_part = ', lang = '.$mdb2->quote($fields['lang']);
 
 792     if (isset($fields['decimal_mark'])) $decimal_mark_part = ', decimal_mark = '.$mdb2->quote($fields['decimal_mark']);
 
 793     if (isset($fields['date_format'])) $date_format_part = ', date_format = '.$mdb2->quote($fields['date_format']);
 
 794     if (isset($fields['time_format'])) $time_format_part = ', time_format = '.$mdb2->quote($fields['time_format']);
 
 795     if (isset($fields['week_start'])) $week_start_part = ', week_start = '.intval($fields['week_start']);
 
 796     if (isset($fields['tracking_mode'])) $tracking_mode_part = ', tracking_mode = '.intval($fields['tracking_mode']);
 
 797     if (isset($fields['record_type'])) $record_type_part = ', record_type = '.intval($fields['record_type']);
 
 798     if (isset($fields['uncompleted_indicators'])) $uncompleted_indicators_part = ', uncompleted_indicators = '.intval($fields['uncompleted_indicators']);
 
 799     if (!empty($fields['bcc_email'])) $bcc_email_part = ', bcc_email = '.$mdb2->quote($fields['bcc_email']);
 
 800     if (isset($fields['plugins'])) $plugins_part = ', plugins = '.$mdb2->quote($fields['plugins']);
 
 801     if (isset($fields['lock_spec'])) $lock_spec_part = ', lock_spec = '.$mdb2->quote($fields['lock_spec']);
 
 802     if (isset($fields['workday_hours'])) $workday_hours_part = ', workday_hours = '.$mdb2->quote($fields['workday_hours']);
 
 804     $sql = "update tt_teams set $name_part $addr_part $currency_part $lang_part $decimal_mark_part
 
 805       $date_format_part $time_format_part $week_start_part $tracking_mode_part $task_required_part $record_type_part
 
 806       $uncompleted_indicators_part $bcc_email_part $plugins_part $lock_spec_part $workday_hours_part where id = $team_id";
 
 807     $affected = $mdb2->exec($sql);
 
 808     if (is_a($affected, 'PEAR_Error')) return false;
 
 813   // The getInactiveTeams is a maintenance function that returns an array of inactive team ids (max 100).
 
 814   static function getInactiveTeams() {
 
 815     $inactive_teams = array();
 
 816     $mdb2 = getConnection();
 
 818     // Get all team ids for teams created or modified more than 6 months ago.
 
 819     // $ts = date('Y-m-d', strtotime('-1 year'));
 
 820     $ts = date('Y-m-d', strtotime('-6 month'));
 
 821     $sql =  "select id from tt_teams where timestamp < '$ts' order by id";
 
 822     $res = $mdb2->query($sql);
 
 825     if (!is_a($res, 'PEAR_Error')) {
 
 826       while ($val = $res->fetchRow()) {
 
 827         $team_id = $val['id'];
 
 828         if (ttTeamHelper::isTeamActive($team_id) == false) {
 
 830           $inactive_teams[] = $team_id;
 
 831           // Limit the array size for perfomance by allowing this operation on small chunks only.
 
 832           if ($count >= 100) break;
 
 835       return $inactive_teams;
 
 840   // The isTeamActive determines if a team is using Time Tracker or abandoned it.
 
 841   static function isTeamActive($team_id) {
 
 844     $mdb2 = getConnection();
 
 845     $sql = "select id from tt_users where team_id = $team_id";
 
 846     $res = $mdb2->query($sql);
 
 847     if (is_a($res, 'PEAR_Error')) die($res->getMessage());
 
 848     while ($val = $res->fetchRow()) {
 
 849       $users[] = $val['id'];
 
 851     $user_list = implode(',', $users); // This is a comma-separated list of user ids.
 
 853       return false; // No users in team.
 
 856     $ts = date('Y-m-d', strtotime('-2 years'));
 
 857     $sql = "select count(*) as cnt from tt_log where user_id in ($user_list) and timestamp > '$ts'";
 
 858     $res = $mdb2->query($sql);
 
 859     if (!is_a($res, 'PEAR_Error')) {
 
 860       if ($val = $res->fetchRow()) {
 
 861         $count = $val['cnt'];
 
 866       return false;  // No time entries for the last 2 years.
 
 869       // We will consider a team inactive if it has 5 or less time entries made more than 1 year ago.
 
 870       $count_last_year = 0;
 
 871       $ts = date('Y-m-d', strtotime('-1 year'));
 
 872       $sql = "select count(*) as cnt from tt_log where user_id in ($user_list) and timestamp > '$ts'";
 
 873       $res = $mdb2->query($sql);
 
 874       if (!is_a($res, 'PEAR_Error')) {
 
 875         if ($val = $res->fetchRow()) {
 
 876           $count_last_year = $val['cnt'];
 
 878         if ($count_last_year == 0)
 
 879           return false;  // No time entries for the last year and only a few entries before that.
 
 885   // The delete function permanently deletes all data for a team.
 
 886   static function delete($team_id) {
 
 887     $mdb2 = getConnection();
 
 890     $sql = "select id from tt_users where team_id = $team_id";
 
 891     $res = $mdb2->query($sql);
 
 892     if (is_a($res, 'PEAR_Error')) return false;
 
 893     while ($val = $res->fetchRow()) {
 
 894       $user_id = $val['id'];
 
 895       if (!ttUserHelper::delete($user_id)) return false;
 
 899     if (!ttTeamHelper::deleteTasks($team_id)) return false;
 
 901     // Delete client to project binds.
 
 902     $sql = "delete from tt_client_project_binds where client_id in (select id from tt_clients where team_id = $team_id)";
 
 903     $affected = $mdb2->exec($sql);
 
 904     if (is_a($affected, 'PEAR_Error')) return false;
 
 907     $sql = "delete from tt_projects where team_id = $team_id";
 
 908     $affected = $mdb2->exec($sql);
 
 909     if (is_a($affected, 'PEAR_Error')) return false;
 
 912     $sql = "delete from tt_clients where team_id = $team_id";
 
 913     $affected = $mdb2->exec($sql);
 
 914     if (is_a($affected, 'PEAR_Error')) return false;
 
 917     $sql = "delete from tt_invoices where team_id = $team_id";
 
 918     $affected = $mdb2->exec($sql);
 
 919     if (is_a($affected, 'PEAR_Error')) return false;
 
 921     // Delete custom fields.
 
 922     if (!ttTeamHelper::deleteCustomFields($team_id)) return false;
 
 925     $sql = "delete from tt_teams where id = $team_id";
 
 926     $affected = $mdb2->exec($sql);
 
 927     if (is_a($affected, 'PEAR_Error')) return false;
 
 932   // The markTasksDeleted deletes task binds and marks the tasks as deleted for a team.
 
 933   static function markTasksDeleted($team_id) {
 
 934     $mdb2 = getConnection();
 
 935     $sql = "select id from tt_tasks where team_id = $team_id";
 
 936     $res = $mdb2->query($sql);
 
 937     if (is_a($res, 'PEAR_Error')) return false;
 
 939     while ($val = $res->fetchRow()) {
 
 941       // Delete task binds.
 
 942       $task_id = $val['id'];
 
 943       $sql = "delete from tt_project_task_binds where task_id = $task_id";
 
 944       $affected = $mdb2->exec($sql);
 
 945       if (is_a($affected, 'PEAR_Error')) return false;
 
 947       // Mark task as deleted.
 
 948       $sql = "update tt_tasks set status = NULL where id = $task_id";
 
 949       $affected = $mdb2->exec($sql);
 
 950       if (is_a($affected, 'PEAR_Error')) return false;
 
 956   // The deleteTasks deletes all tasks and task binds for an inactive team.
 
 957   static function deleteTasks($team_id) {
 
 958     $mdb2 = getConnection();
 
 959     $sql = "select id from tt_tasks where team_id = $team_id";
 
 960     $res = $mdb2->query($sql);
 
 961     if (is_a($res, 'PEAR_Error')) return false;
 
 963     while ($val = $res->fetchRow()) {
 
 965       // Delete task binds.
 
 966       $task_id = $val['id'];
 
 967       $sql = "delete from tt_project_task_binds where task_id = $task_id";
 
 968       $affected = $mdb2->exec($sql);
 
 969       if (is_a($affected, 'PEAR_Error')) return false;
 
 972       $sql = "delete from tt_tasks where id = $task_id";
 
 973       $affected = $mdb2->exec($sql);
 
 974       if (is_a($affected, 'PEAR_Error')) return false;
 
 980   // The deleteCustomFields cleans up tt_custom_field_log, tt_custom_field_options and tt_custom_fields tables for an inactive team.
 
 981   static function deleteCustomFields($team_id) {
 
 982     $mdb2 = getConnection();
 
 983     $sql = "select id from tt_custom_fields where team_id = $team_id";
 
 984     $res = $mdb2->query($sql);
 
 985     if (is_a($res, 'PEAR_Error')) return false;
 
 987     while ($val = $res->fetchRow()) {
 
 988       $field_id = $val['id'];
 
 990       // Clean up tt_custom_field_log.
 
 991       $sql = "delete from tt_custom_field_log where field_id = $field_id";
 
 992       $affected = $mdb2->exec($sql);
 
 993       if (is_a($affected, 'PEAR_Error')) return false;
 
 995       // Clean up tt_custom_field_options.
 
 996       $sql = "delete from tt_custom_field_options where field_id = $field_id";
 
 997       $affected = $mdb2->exec($sql);
 
 998       if (is_a($affected, 'PEAR_Error')) return false;
 
1000       // Delete custom field.
 
1001       $sql = "delete from tt_custom_fields where id = $field_id";
 
1002       $affected = $mdb2->exec($sql);
 
1003       if (is_a($affected, 'PEAR_Error')) return false;