X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=WEB-INF%2Flib%2FttRoleHelper.class.php;h=35374469932c15b7a8a2a3732fb70e93477a1aae;hb=7797eda9fb04c217a813db88e00bb9ee541eabbb;hp=2751756b7a14ea8facd5da2ad69717ea92226348;hpb=085cb5b327f095bcd55f0764b8ab7b7fb3b6bcfa;p=timetracker.git diff --git a/WEB-INF/lib/ttRoleHelper.class.php b/WEB-INF/lib/ttRoleHelper.class.php index 2751756b..35374469 100644 --- a/WEB-INF/lib/ttRoleHelper.class.php +++ b/WEB-INF/lib/ttRoleHelper.class.php @@ -37,7 +37,7 @@ class ttRoleHelper { $mdb2 = getConnection(); $sql = "select id, name, description, rank, rights, status from tt_roles - where id = $id and group_id = ".$user->getActiveGroup()." and (status = 0 or status = 1)"; + where id = $id and group_id = ".$user->getGroup()." and (status = 0 or status = 1)"; $res = $mdb2->query($sql); if (!is_a($res, 'PEAR_Error')) { @@ -56,7 +56,7 @@ class ttRoleHelper { $mdb2 = getConnection(); global $user; - $sql = "select id from tt_roles where group_id = ".$user->getActiveGroup(). + $sql = "select id from tt_roles where group_id = ".$user->getGroup(). " and name = ".$mdb2->quote($role_name)." and (status = 1 or status = 0)"; $res = $mdb2->query($sql); @@ -89,7 +89,7 @@ class ttRoleHelper { global $user; $mdb2 = getConnection(); - $sql = "select rights from tt_roles where group_id = ".$user->getActiveGroup()." and id = $role_id"; + $sql = "select rights from tt_roles where group_id = ".$user->getGroup()." and id = $role_id"; $res = $mdb2->query($sql); if (!is_a($res, 'PEAR_Error')) { @@ -124,6 +124,9 @@ class ttRoleHelper { global $user; $mdb2 = getConnection(); + $group_id = $user->getGroup(); + $org_id = $user->org_id; + $id = (int)$fields['id']; if (isset($fields['name'])) $name_part = 'name = '.$mdb2->quote($fields['name']); if (isset($fields['rank'])) $rank_part = ', rank = '.(int)$fields['rank']; @@ -131,7 +134,7 @@ class ttRoleHelper { if (isset($fields['status'])) $status_part = ', status = '.(int)$fields['status']; if (isset($fields['rights'])) $rights_part = ', rights = '.$mdb2->quote($fields['rights']); $parts = trim($name_part.$rank_part.$descr_part.$status_part.$rights_part, ','); - $sql = "update tt_roles set $parts where id = $id and group_id = $user->group_id"; + $sql = "update tt_roles set $parts where id = $id and group_id = $group_id and org_id = $org_id"; $affected = $mdb2->exec($sql); return (!is_a($affected, 'PEAR_Error')); } @@ -141,9 +144,11 @@ class ttRoleHelper { global $user; $mdb2 = getConnection(); + $group_id = $user->getGroup(); + $org_id = $user->org_id; // Mark the task as deleted. - $sql = "update tt_roles set status = NULL where id = $role_id and group_id = $user->group_id"; + $sql = "update tt_roles set status = NULL where id = $role_id and group_id = $group_id and org_id = $org_id"; $affected = $mdb2->exec($sql); return (!is_a($affected, 'PEAR_Error')); } @@ -313,4 +318,29 @@ class ttRoleHelper { } return false; } + + // copyRolesToGroup copies roles from current on behalf group to another. + static function copyRolesToGroup($group_id) { + global $user; + $mdb2 = getConnection(); + + $org_id = $user->org_id; + $columns = '(group_id, org_id, name, description, rank, rights, status)'; + $roles = ttGroupHelper::getRoles(); // Roles in current on behalf group. + + foreach ($roles as $role) { + $values = "values($group_id, $org_id". + ', '.$mdb2->quote($role['name']). + ', '.$mdb2->quote($role['description']). + ', '.(int)$role['rank']. + ', '.$mdb2->quote($role['rights']). + ', '.$mdb2->quote($role['status']). + ')'; + $sql = "insert into tt_roles $columns $values"; + $affected = $mdb2->exec($sql); + if (is_a($affected, 'PEAR_Error')) + return false; + } + return true; + } }