X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=WEB-INF%2Flib%2FttTeamHelper.class.php;h=60be9b53c3e435bc41e8fc7b8488bc01cb6a5d69;hb=ecf7d911c95935f8cfb2403f645cd12f93d8c3f5;hp=e76482d0c6e518fa9632cda3190e9a5a6c05e9d6;hpb=1a77a68a1622313c9ab4aaab0e39392450aa39cf;p=timetracker.git diff --git a/WEB-INF/lib/ttTeamHelper.class.php b/WEB-INF/lib/ttTeamHelper.class.php index e76482d0..60be9b53 100644 --- a/WEB-INF/lib/ttTeamHelper.class.php +++ b/WEB-INF/lib/ttTeamHelper.class.php @@ -28,6 +28,7 @@ import('ttUserHelper'); import('DateAndTime'); +import('ttInvoiceHelper'); // Class ttTeamHelper - contains helper functions that operate with teams. class ttTeamHelper { @@ -56,7 +57,7 @@ class ttTeamHelper { 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 u.name"; + order by upper(u.name)"; $res = $mdb2->query($sql); $user_list = array(); if (is_a($res, 'PEAR_Error')) @@ -70,17 +71,21 @@ class ttTeamHelper { // The getActiveUsers obtains all active users in a given team. static function getActiveUsers($options = null) { global $user; + global $i18n; $mdb2 = getConnection(); if (isset($options['getAllFields'])) - $sql = "select * from tt_users where team_id = $user->team_id and status = 1 order by name"; + $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.team_id = $user->team_id and u.status = 1 order by upper(u.name)"; else - $sql = "select id, name from tt_users where team_id = $user->team_id and status = 1 order by name"; + $sql = "select id, name from tt_users where team_id = $user->team_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->getKey('role.top_manager.label'); $user_list[] = $val; } @@ -103,7 +108,7 @@ class ttTeamHelper { global $user; $mdb2 = getConnection(); - $sql = "select id, name from tt_users where team_id = $user->team_id and (status = 1 or status = 0) order by name"; + $sql = "select id, name from tt_users where team_id = $user->team_id and (status = 1 or status = 0) order by upper(name)"; $res = $mdb2->query($sql); $user_list = array(); if (is_a($res, 'PEAR_Error')) @@ -120,9 +125,9 @@ class ttTeamHelper { $mdb2 = getConnection(); if ($all_fields) - $sql = "select * from tt_users where team_id = $team_id and status = 0 order by name"; + $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.team_id = $team_id and u.status = 0 order by upper(u.name)"; else - $sql = "select id, name from tt_users where team_id = $team_id and status = 0 order by name"; + $sql = "select id, name from tt_users where team_id = $team_id and status = 0 order by upper(name)"; $res = $mdb2->query($sql); $result = array(); if (!is_a($res, 'PEAR_Error')) { @@ -137,11 +142,10 @@ class ttTeamHelper { // The getAllUsers obtains all users in a given team. static function getAllUsers($team_id, $all_fields = false) { $mdb2 = getConnection(); - if ($all_fields) - $sql = "select * from tt_users where team_id = $team_id order by name"; + $sql = "select * from tt_users where team_id = $team_id order by upper(name)"; else - $sql = "select id, name from tt_users where team_id = $team_id order by name"; + $sql = "select id, name from tt_users where team_id = $team_id order by upper(name)"; $res = $mdb2->query($sql); $result = array(); if (!is_a($res, 'PEAR_Error')) { @@ -160,7 +164,7 @@ class ttTeamHelper { $mdb2 = getConnection(); $sql = "select id, name, description, tasks from tt_projects - where team_id = $team_id and status = 1 order by name"; + where team_id = $team_id and status = 1 order by upper(name)"; $res = $mdb2->query($sql); $result = array(); if (!is_a($res, 'PEAR_Error')) { @@ -178,7 +182,7 @@ class ttTeamHelper { $mdb2 = getConnection(); $sql = "select id, name, description, tasks from tt_projects - where team_id = $team_id and status = 0 order by name"; + where team_id = $team_id and status = 0 order by upper(name)"; $res = $mdb2->query($sql); $result = array(); if (!is_a($res, 'PEAR_Error')) { @@ -194,9 +198,9 @@ class ttTeamHelper { $mdb2 = getConnection(); if ($all_fields) - $sql = "select * from tt_projects where team_id = $team_id order by status, name"; + $sql = "select * from tt_projects where team_id = $team_id order by status, upper(name)"; else - $sql = "select id, name from tt_projects where team_id = $team_id order by status, name"; + $sql = "select id, name from tt_projects where team_id = $team_id order by status, upper(name)"; $res = $mdb2->query($sql); $result = array(); if (!is_a($res, 'PEAR_Error')) { @@ -214,7 +218,7 @@ class ttTeamHelper { $result = array(); $mdb2 = getConnection(); - $sql = "select id, name, description from tt_tasks where team_id = $team_id and status = 1 order by name"; + $sql = "select id, name, description from tt_tasks where team_id = $team_id and status = 1 order by upper(name)"; $res = $mdb2->query($sql); $result = array(); if (!is_a($res, 'PEAR_Error')) { @@ -232,7 +236,7 @@ class ttTeamHelper { $mdb2 = getConnection(); $sql = "select id, name, description from tt_tasks - where team_id = $team_id and status = 0 order by name"; + where team_id = $team_id and status = 0 order by upper(name)"; $res = $mdb2->query($sql); $result = array(); if (!is_a($res, 'PEAR_Error')) { @@ -248,9 +252,9 @@ class ttTeamHelper { $mdb2 = getConnection(); if ($all_fields) - $sql = "select * from tt_tasks where team_id = $team_id order by status, name"; + $sql = "select * from tt_tasks where team_id = $team_id order by status, upper(name)"; else - $sql = "select id, name from tt_tasks where team_id = $team_id order by status, name"; + $sql = "select id, name from tt_tasks where team_id = $team_id order by status, upper(name)"; $res = $mdb2->query($sql); $result = array(); if (!is_a($res, 'PEAR_Error')) { @@ -262,6 +266,86 @@ class ttTeamHelper { 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 team_id = $user->team_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 team. + static function getActiveRoles($team_id) + { + $result = array(); + $mdb2 = getConnection(); + + $sql = "select id, name, description, rank, rights from tt_roles where team_id = $team_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 data entry right. + $result[] = $val; + } + } + return $result; + } + + // getInactiveRoles - returns an array of inactive roles for team. + static function getInactiveRoles($team_id) + { + $result = array(); + $mdb2 = getConnection(); + + $sql = "select id, name, rank, description from tt_roles + where team_id = $team_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 team_id = $user->team_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 team. static function getActiveClients($team_id, $all_fields = false) { @@ -269,9 +353,9 @@ class ttTeamHelper { $mdb2 = getConnection(); if ($all_fields) - $sql = "select * from tt_clients where team_id = $team_id and status = 1 order by name"; + $sql = "select * from tt_clients where team_id = $team_id and status = 1 order by upper(name)"; else - $sql = "select id, name from tt_clients where team_id = $team_id and status = 1 order by name"; + $sql = "select id, name from tt_clients where team_id = $team_id and status = 1 order by upper(name)"; $res = $mdb2->query($sql); $result = array(); @@ -290,9 +374,9 @@ class ttTeamHelper { $mdb2 = getConnection(); if ($all_fields) - $sql = "select * from tt_clients where team_id = $team_id and status = 0 order by name"; + $sql = "select * from tt_clients where team_id = $team_id and status = 0 order by upper(name)"; else - $sql = "select id, name from tt_clients where team_id = $team_id and status = 0 order by name"; + $sql = "select id, name from tt_clients where team_id = $team_id and status = 0 order by upper(name)"; $res = $mdb2->query($sql); $result = array(); @@ -309,9 +393,9 @@ class ttTeamHelper { $mdb2 = getConnection(); if ($all_fields) - $sql = "select * from tt_clients where team_id = $team_id order by status, name"; + $sql = "select * from tt_clients where team_id = $team_id order by status, upper(name)"; else - $sql = "select id, name from tt_clients where team_id = $team_id order by status, name"; + $sql = "select id, name from tt_clients where team_id = $team_id order by status, upper(name)"; $res = $mdb2->query($sql); $result = array(); @@ -328,11 +412,12 @@ class ttTeamHelper { static function getActiveInvoices($localizeDates = true) { global $user; + $addPaidStatus = $user->isPluginEnabled('ps'); $result = array(); $mdb2 = getConnection(); - if (ROLE_CLIENT == $user->role && $user->client_id) + 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 @@ -347,6 +432,8 @@ class ttTeamHelper { $dt->parseVal($val['date']); $val['date'] = $dt->toString($user->date_format); } + if ($addPaidStatus) + $val['paid'] = ttInvoiceHelper::isPaid($val['id']); $result[] = $val; } } @@ -498,14 +585,53 @@ class ttTeamHelper { return false; } + // getPredefinedExpenses - obtains predefined expenses for team. + static function getPredefinedExpenses($team_id) { + global $user; + $replaceDecimalMark = ('.' != $user->decimal_mark); + + $mdb2 = getConnection(); + + $result = array(); + $sql = "select id, name, cost from tt_predefined_expenses where team_id = $team_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 team. static function getNotifications($team_id) { $mdb2 = getConnection(); $result = array(); - $sql = "select c.id, c.cron_spec, c.email, fr.name from tt_cron c + $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.team_id = $team_id and c.status is not null"; + where c.team_id = $team_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 team. + static function getMonthlyQuotas($team_id) { + $mdb2 = getConnection(); + + $result = array(); + $sql = "select year, month, minutes from tt_monthly_quotas where team_id = $team_id"; $res = $mdb2->query($sql); $result = array(); if (!is_a($res, 'PEAR_Error')) { @@ -549,6 +675,11 @@ class ttTeamHelper { $mdb2 = getConnection(); + // Mark roles deleted. + $sql = "update tt_roles set status = NULL where team_id = $team_id"; + $affected = $mdb2->exec($sql); + if (is_a($affected, 'PEAR_Error')) return false; + // Mark projects deleted. $sql = "update tt_projects set status = NULL where team_id = $team_id"; $affected = $mdb2->exec($sql); @@ -577,10 +708,10 @@ class ttTeamHelper { $result = array(); $mdb2 = getConnection(); - $role_manager = ROLE_MANAGER; $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 from tt_teams t - inner join tt_users u on (u.team_id = t.id and u.role = $role_manager) + inner join tt_users u on (u.team_id = t.id) + inner join tt_roles r on (r.id = u.role_id and r.rank = 512) where t.id = $team_id"; $res = $mdb2->query($sql); @@ -597,13 +728,13 @@ class ttTeamHelper { $mdb2 = getConnection(); - $lock_spec = $fields['lock_spec']; - if ($lock_spec !== null) { - $lockspec_f = ', lock_spec'; - $lockspec_v = ', ' . $mdb2->quote($lock_spec); - } else { - $lockspec_f = ''; - $lockspec_v = ''; + // Start with team name and currency. + $columns = 'name, currency'; + $values = $mdb2->quote(trim($fields['name'])).', '.$mdb2->quote(trim($fields['currency'])); + + if ($fields['decimal_mark']) { + $columns .= ', decimal_mark'; + $values .= ', '.$mdb2->quote($fields['decimal_mark']); } $lang = $fields['lang']; @@ -611,84 +742,73 @@ class ttTeamHelper { global $i18n; $lang = $i18n->lang; } + $columns .= ', lang'; + $values .= ', '.$mdb2->quote($lang); + + if ($fields['date_format'] || defined('DATE_FORMAT_DEFAULT')) { + $date_format = $fields['date_format'] ? $fields['date_format'] : DATE_FORMAT_DEFAULT; + $columns .= ', date_format'; + $values .= ', '.$mdb2->quote($date_format); + } + + if ($fields['time_format'] || defined('TIME_FORMAT_DEFAULT')) { + $time_format = $fields['time_format'] ? $fields['time_format'] : TIME_FORMAT_DEFAULT; + $columns .= ', time_format'; + $values .= ', '.$mdb2->quote($time_format); + } + + if ($fields['week_start'] || defined('WEEK_START_DEFAULT')) { + $week_start = $fields['week_start'] ? $fields['week_start'] : WEEK_START_DEFAULT; + $columns .= ', week_start'; + $values .= ', '.(int)$week_start; + } + + if ($fields['tracking_mode']) { + $columns .= ', tracking_mode'; + $values .= ', '.(int)$fields['tracking_mode']; + } + + if ($fields['project_required']) { + $columns .= ', project_required'; + $values .= ', '.(int)$fields['project_required']; + } + + if ($fields['task_required']) { + $columns .= ', task_required'; + $values .= ', '.(int)$fields['task_required']; + } + + if ($fields['record_type']) { + $columns .= ', record_type'; + $values .= ', '.(int)$fields['record_type']; + } + + if ($fields['bcc_email']) { + $columns .= ', bcc_email'; + $values .= ', '.$mdb2->quote($fields['bcc_email']); + } + + if ($fields['plugins']) { + $columns .= ', plugins'; + $values .= ', '.$mdb2->quote($fields['plugins']); + } + + if ($fields['lock_spec']) { + $columns .= ', lock_spec'; + $values .= ', '.$mdb2->quote($fields['lock_spec']); + } + + if ($fields['workday_minutes']) { + $columns .= ', workday_minutes'; + $values .= ', '.(int)$fields['workday_minutes']; + } + + if ($fields['config']) { + $columns .= ', config'; + $values .= ', '.$mdb2->quote($fields['config']); + } - $decimal_mark = $fields['decimal_mark']; - if ($decimal_mark !== null) { - $decimal_mark_f = ', decimal_mark'; - $decimal_mark_v = ', ' . $mdb2->quote($decimal_mark); - } else { - $decimal_mark_f = ''; - $decimal_mark_v = ''; - } - - $date_format = $fields['date_format']; - if ($date_format !== null) { - $date_format_f = ', date_format'; - $date_format_v = ', ' . $mdb2->quote($date_format); - } elseif (defined('DATE_FORMAT_DEFAULT')) { - $date_format_f = ', date_format'; - $date_format_v = ', ' . $mdb2->quote(DATE_FORMAT_DEFAULT); - } else { - $date_format_f = ''; - $date_format_v = ''; - } - - $time_format = $fields['time_format']; - if ($time_format !== null) { - $time_format_f = ', time_format'; - $time_format_v = ', ' . $mdb2->quote($time_format); - } elseif (defined('TIME_FORMAT_DEFAULT')) { - $time_format_f = ', time_format'; - $time_format_v = ', ' . $mdb2->quote(TIME_FORMAT_DEFAULT); - } else { - $time_format_f = ''; - $time_format_v = ''; - } - - $week_start = $fields['week_start']; - if ($week_start !== null) { - $week_start_f = ', week_start'; - $week_start_v = ', ' . (int)$week_start; - } elseif (defined('WEEK_START_DEFAULT')) { - $week_start_f = ', week_start'; - $week_start_v = ', ' . (int)WEEK_START_DEFAULT; - } else { - $week_start_f = ''; - $week_start_v = ''; - } - - $plugins = $fields['plugins']; - if ($plugins !== null) { - $plugins_f = ', plugins'; - $plugins_v = ', ' . $mdb2->quote($plugins); - } else { - $plugins_f = ''; - $plugins_v = ''; - } - - $tracking_mode = $fields['tracking_mode']; - if ($tracking_mode !== null) { - $tracking_mode_f = ', tracking_mode'; - $tracking_mode_v = ', ' . (int)$tracking_mode; - } else { - $tracking_mode_f = ''; - $tracking_mode_v = ''; - } - - $record_type = $fields['record_type']; - if ($record_type !== null) { - $record_type_f = ', record_type'; - $record_type_v = ', ' . (int)$record_type; - } else { - $record_type_f = ''; - $record_type_v = ''; - } - - $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 $record_type_f) - values(".$mdb2->quote(trim($fields['name'])). - ", ".$mdb2->quote(trim($fields['address'])). - ", ".$mdb2->quote(trim($fields['currency']))." $lockspec_v, ".$mdb2->quote($lang). - "$decimal_mark_v $date_format_v $time_format_v $week_start_v $plugins_v $tracking_mode_v $record_type_v)"; + $sql = "insert into tt_teams ($columns) values($values)"; $affected = $mdb2->exec($sql); if (!is_a($affected, 'PEAR_Error')) { @@ -702,51 +822,54 @@ class ttTeamHelper { // The update function updates team information. static function update($team_id, $fields) { - // We'll require team name to be always set. - if (!isset($fields['name'])) return false; - $mdb2 = getConnection(); $name_part = 'name = '.$mdb2->quote($fields['name']); $currency_part = ''; - $addr_part = ''; $lang_part = ''; $decimal_mark_part = ''; $date_format_part = ''; $time_format_part = ''; $week_start_part = ''; $tracking_mode_part = ''; + $task_required_part = ' , task_required = '.(int) $fields['task_required']; $record_type_part = ''; + $bcc_email_part = ''; $plugins_part = ''; + $config_part = ''; $lock_spec_part = ''; + $workday_minutes_part = ''; - if (isset($fields['address'])) $addr_part = ', address = '.$mdb2->quote($fields['address']); if (isset($fields['currency'])) $currency_part = ', currency = '.$mdb2->quote($fields['currency']); if (isset($fields['lang'])) $lang_part = ', lang = '.$mdb2->quote($fields['lang']); if (isset($fields['decimal_mark'])) $decimal_mark_part = ', decimal_mark = '.$mdb2->quote($fields['decimal_mark']); if (isset($fields['date_format'])) $date_format_part = ', date_format = '.$mdb2->quote($fields['date_format']); if (isset($fields['time_format'])) $time_format_part = ', time_format = '.$mdb2->quote($fields['time_format']); - if (isset($fields['week_start'])) $week_start_part = ', week_start = '.intval($fields['week_start']); - if (isset($fields['tracking_mode'])) $tracking_mode_part = ', tracking_mode = '.intval($fields['tracking_mode']); - if (isset($fields['record_type'])) $record_type_part = ', record_type = '.intval($fields['record_type']); + if (isset($fields['week_start'])) $week_start_part = ', week_start = '.(int) $fields['week_start']; + if (isset($fields['tracking_mode'])) $tracking_mode_part = ', tracking_mode = '.(int) $fields['tracking_mode']; + if (isset($fields['record_type'])) $record_type_part = ', record_type = '.(int) $fields['record_type']; + if (isset($fields['bcc_email'])) $bcc_email_part = ', bcc_email = '.$mdb2->quote($fields['bcc_email']); if (isset($fields['plugins'])) $plugins_part = ', plugins = '.$mdb2->quote($fields['plugins']); + if (isset($fields['config'])) $config_part = ', config = '.$mdb2->quote($fields['config']); if (isset($fields['lock_spec'])) $lock_spec_part = ', lock_spec = '.$mdb2->quote($fields['lock_spec']); + if (isset($fields['workday_minutes'])) $workday_minutes_part = ', workday_minutes = '.$mdb2->quote($fields['workday_minutes']); - $sql = "update tt_teams set $name_part $addr_part $currency_part $lang_part $decimal_mark_part - $date_format_part $time_format_part $week_start_part $tracking_mode_part $record_type_part - $plugins_part $lock_spec_part where id = $team_id"; + $sql = "update tt_teams set $name_part $currency_part $lang_part $decimal_mark_part + $date_format_part $time_format_part $week_start_part $tracking_mode_part $task_required_part $record_type_part + $bcc_email_part $plugins_part $config_part $lock_spec_part $workday_minutes_part where id = $team_id"; $affected = $mdb2->exec($sql); if (is_a($affected, 'PEAR_Error')) return false; return true; } - // The getInactiveTeams is a maintenance function that returns an array of inactive team ids (max 25). + // The getInactiveTeams is a maintenance function that returns an array of inactive team ids (max 100). static function getInactiveTeams() { $inactive_teams = array(); $mdb2 = getConnection(); - // Get all team ids for teams created or modified more than 1 year ago. - $ts = date('Y-m-d', strtotime('-1 year')); + // Get all team ids for teams created or modified more than 6 months ago. + // $ts = date('Y-m-d', strtotime('-1 year')); + $ts = date('Y-m-d', strtotime('-6 month')); $sql = "select id from tt_teams where timestamp < '$ts' order by id"; $res = $mdb2->query($sql); @@ -850,6 +973,11 @@ class ttTeamHelper { // Delete custom fields. if (!ttTeamHelper::deleteCustomFields($team_id)) return false; + // Delete roles. + $sql = "delete from tt_roles where team_id = $team_id"; + $affected = $mdb2->exec($sql); + if (is_a($affected, 'PEAR_Error')) return false; + // Delete team. $sql = "delete from tt_teams where id = $team_id"; $affected = $mdb2->exec($sql); @@ -934,4 +1062,31 @@ class ttTeamHelper { return true; } + + // enablePlugin either enables or disables a specific plugin for team. + static function enablePlugin($plugin, $enable = true) + { + global $user; + if (!$user->can('manage_features')) + return false; + + $plugin_array = explode(',', $user->plugins); + if ($enable && !in_array($plugin, $plugin_array)) + $plugin_array[] = $plugin; // Add plugin to array. + + if (!$enable && in_array($plugin, $plugin_array)) { + $key = array_search($plugin, $plugin_array); + if ($key !== false) + unset($plugin_array[$key]); // Remove plugin from array. + } + + $plugins = implode(',', $plugin_array); + if ($plugins != $user->plugins) { + if (!ttTeamHelper::update($user->team_id, array('name' => $user->team,'plugins' => $plugins))) + return false; + $user->plugins = $plugins; + } + + return true; + } }