X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=WEB-INF%2Flib%2FttTeamHelper.class.php;h=631d21202598e69a25dd776dc4dc4fb6923f9dec;hb=582bcea8035519f2b93be44023ec2cd032ef2504;hp=dfcdaaf1096dc1cb90a3552b3d14b05ce3b1dc39;hpb=bf0370124e2c2bfb092deed614990fc4cfffe8c6;p=timetracker.git diff --git a/WEB-INF/lib/ttTeamHelper.class.php b/WEB-INF/lib/ttTeamHelper.class.php index dfcdaaf1..631d2120 100644 --- a/WEB-INF/lib/ttTeamHelper.class.php +++ b/WEB-INF/lib/ttTeamHelper.class.php @@ -33,20 +33,6 @@ import('ttInvoiceHelper'); // Class ttTeamHelper - contains helper functions that operate with groups. class ttTeamHelper { - // The getUserCount function returns number of active users in a group. - static function getUserCount($group_id) { - $mdb2 = getConnection(); - - $sql = "select count(id) as cnt from tt_users where group_id = $group_id and status = 1"; - $res = $mdb2->query($sql); - - if (!is_a($res, 'PEAR_Error')) { - $val = $res->fetchRow(); - return $val['cnt']; - } - return false; - } - // The getUsersForClient obtains all active and inactive users in a group that are relevant to a client. static function getUsersForClient() { global $user; @@ -678,9 +664,9 @@ class ttTeamHelper { $inactive_groups = array(); $mdb2 = getConnection(); - // Get all group ids for groups created or modified more than 8 months ago. + // Get all group ids for groups created or modified more than 9 months ago. // $ts = date('Y-m-d', strtotime('-1 year')); - $ts = $mdb2->quote(date('Y-m-d', strtotime('-8 month'))); + $ts = $mdb2->quote(date('Y-m-d', strtotime('-9 month'))); $sql = "select id from tt_groups where created < $ts and (modified is null or modified < $ts) order by id"; $res = $mdb2->query($sql); @@ -797,30 +783,6 @@ class ttTeamHelper { return true; } - // The markTasksDeleted deletes task binds and marks the tasks as deleted for a group. - static function markTasksDeleted($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; - - // Mark task as deleted. - $sql = "update tt_tasks set status = NULL where id = $task_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();