True, "nonavbar" => True); } $phpgw_info["flags"]["currentapp"] = "admin"; include("../header.inc.php"); $debugme = "on"; $p = CreateObject('phpgwapi.Template',$phpgw->common->get_tpl_dir('admin')); function is_odd($n) { $ln = substr($n,-1); if ($ln == 1 || $ln == 3 || $ln == 5 || $ln == 7 || $ln == 9) { return True; } else { return False; } } if (! $group_id) { Header("Location: " . $phpgw->link("groups.php")); } if ($submit) { $phpgw->db->query("SELECT account_lid FROM phpgw_accounts WHERE account_id=$group_id",__LINE__,__FILE__); $phpgw->db->next_record(); $old_group_name = $phpgw->db->f("account_lid"); $phpgw->db->query("SELECT count(*) FROM phpgw_accounts WHERE account_lid='" . $n_group . "'",__LINE__,__FILE__); $phpgw->db->next_record(); if ($phpgw->db->f(0) != 0 && $n_group != $old_group_name) { $error = lang("Sorry, that group name has already been taking."); } if (! $error) { $phpgw->db->lock(array('phpgw_accounts','preferences','config','applications','phpgw_hooks','phpgw_sessions','phpgw_acl')); $apps = CreateObject('phpgwapi.applications',intval($group_id)); $apps_before = $apps->read_account_specific(); $apps->update_data(Array()); while($app = each($n_group_permissions)) { if($app[1]) { $apps->add($app[0]); if(!$apps_before[$app[0]]) { $apps_after[] = $app[0]; } } } $apps->save_repository(); if($old_group_name <> $n_group) { $phpgw->db->query("UPDATE phpgw_accounts SET account_lid='$n_group' WHERE account_id=$group_id",__LINE__,__FILE__); } $acl = CreateObject('phpgwapi.acl',$group_id); $acl->read_repository(); $old_group_list = $acl->get_ids_for_location($group_id,1,'phpgw_group'); @reset($old_group_list); while($old_group_list && $user_id = each($old_group_list)) { $acl->delete_repository('phpgw_group',$group_id,$user_id[1]); } for ($i=0; $iadd_repository('phpgw_group',$group_id,$n_users[$i],1); $phpgw->db->query("SELECT account_lid FROM phpgw_accounts WHERE account_id=".$n_users[$i],__LINE__,__FILE__); $phpgw->db->next_record(); $acccount_lid = $phpgw->db->f('account_lid'); // If the user is logged in, it will force a refresh of the session_info $phpgw->db->query("update phpgw_sessions set session_info='' where session_lid='$account_lid@" . $phpgw_info["user"]["domain"] . "'",__LINE__,__FILE__); // The following sets any default preferences needed for new applications.. // This is smart enough to know if previous preferences were selected, use them. $pref = CreateObject('phpgwapi.preferences',intval($n_users[$i])); $t = $pref->read_repository(); $docommit = False; for ($j=1;$jcommon->hook_single('add_def_pref', $apps_after[$j]); $docommit = True; } } if ($docommit) { $pref->save_repository(); } } $sep = $phpgw->common->filesystem_separator(); if ($old_group_name <> $n_group) { $basedir = $phpgw_info['server']['files_dir'] . $sep . 'groups' . $sep; if (! @rename($basedir . $old_group_name, $basedir . $n_group)) { $cd = 39; } else { $cd = 33; } } else { $cd = 33; } $phpgw->db->unlock(); Header('Location: ' . $phpgw->link('groups.php','cd='.$cd)); $phpgw->common->phpgw_exit(); } } $p->set_file(array('form' => 'groups_form.tpl')); if ($error) { $phpgw->common->phpgw_header(); echo parse_navbar(); $p->set_var('error','

'.$error.'
'); } else { $p->set_var('error',''); } if ($submit) { $p->set_var('group_name_value',$n_group_name); for ($i=0; $idb->query('SELECT account_lid FROM phpgw_accounts WHERE account_id='.$group_id,__LINE__,__FILE__); $phpgw->db->next_record(); $p->set_var('group_name_value',$phpgw->db->f('account_id')); $group_user = $phpgw->acl->get_ids_for_location($group_id,1,'phpgw_group'); while ($user = each($group_user)) { $selected_users[$user[1]] = ' selected'; } $apps = CreateObject('phpgwapi.applications',intval($group_id)); $apps->read_repository(); $db_perms = $apps->read_account_specific(); } $phpgw->db->query('SELECT * FROM phpgw_accounts WHERE account_id='.$group_id,__LINE__,__FILE__); $phpgw->db->next_record(); $p->set_var('form_action',$phpgw->link('editgroup.php')); $p->set_var('hidden_vars',''); $p->set_var('lang_group_name',lang('group name')); $p->set_var('group_name_value',$phpgw->db->f('account_lid')); $phpgw->db->query("SELECT count(*) FROM phpgw_accounts WHERE account_status !='L' AND account_type='u'"); $phpgw->db->next_record(); if ($phpgw->db->f(0) < 5) { $p->set_var('select_size',$phpgw->db->f(0)); } else { $p->set_var('select_size','5'); } $p->set_var('lang_include_user',lang('Select users for inclusion')); $phpgw->db->query("SELECT account_id,account_firstname,account_lastname,account_lid FROM phpgw_accounts WHERE " . "account_status != 'L' AND account_type='u' ORDER BY account_lastname,account_firstname,account_lid asc"); while ($phpgw->db->next_record()) { $user_list .= ''; } $p->set_var('user_list',$user_list); $p->set_var("lang_permissions",lang("Permissions this group has")); $i = 0; reset($phpgw_info["apps"]); $sorted_apps = $phpgw_info["apps"]; @asort($sorted_apps); @reset($sorted_apps); while ($permission = each($sorted_apps)) { if ($permission[1]["enabled"]) { $perm_display[$i][0] = $permission[0]; $perm_display[$i][1] = $permission[1]["title"]; $i++; } } $perm_html = ""; for ($i=0;$i<200;) { // The $i<200 is only used for a brake if (! $perm_display[$i][1]) break; $perm_html .= '' . lang($perm_display[$i][1]) . '' . '' . 'set_var("permissions_list",$perm_html); $p->set_var("lang_submit_button",lang("submit changes")); $p->pparse("out","form"); $phpgw->common->phpgw_footer(); ?>