True, "nonavbar" => True); } $phpgw_info["flags"]["currentapp"] = "admin"; include("../header.inc.php"); // Make sure they are not attempting to delete their own account, or they have cancelled. // If they are, they should not reach this point anyway. if($cancel || $phpgw_info['user']['account_id'] == $account_id) { Header('Location: '.$phpgw->link('/admin/accounts.php')); $phpgw->common->phpgw_exit(); } if ($account_id && !$delete_account) { $phpgw->template->set_file(array("form" => "delete_account.tpl")); $phpgw->template->set_var('form_action',$phpgw->link('/admin/deleteaccount.php')); $phpgw->template->set_var('account_id',$account_id); // the account can have special chars/white spaces, if it is a ldap dn $account_id = rawurlencode($account_id); // Find out who the new owner is of the deleted users records... $str = ''."\n"; $phpgw->template->set_var('lang_new_owner',lang('Who would you like to transfer ALL records owned by the deleted user to?')); $phpgw->template->set_var('new_owner_select',$str); $phpgw->template->set_var('cancel',lang('cancel')); $phpgw->template->set_var('delete',lang('delete')); $phpgw->template->pparse("out","form"); $phpgw->common->phpgw_footer(); } if($delete_account) { $accountid = $account_id; settype($account_id,'integer'); $account_id = get_account_id($accountid); $lid = $phpgw->accounts->id2name($account_id); $phpgw->db->query('SELECT app_name FROM phpgw_applications WHERE app_enabled=1',__LINE__,__FILE__); if($phpgw->db->num_rows()) { while($phpgw->db->next_record()) { $appname = $phpgw->db->f('app_name'); if($appname <> 'admin') { $phpgw->common->hook_single('deleteaccount', $appname); } } } $phpgw->common->hook_single('deleteaccount','preferences'); $phpgw->common->hook_single('deleteaccount','admin'); $basedir = $phpgw_info['server']['files_dir'] . SEP . 'users' . SEP; if (! @rmdir($basedir . $lid)) { $cd = 34; } else { $cd = 29; } Header("Location: " . $phpgw->link("/admin/accounts.php","cd=$cd")); $phpgw->common->phpgw_exit(); } ?>