True, "nonavbar" => True); } $phpgw_info["flags"]["currentapp"] = "admin"; $phpgw_info["flags"]["disable_message_class"] = True; $phpgw_info["flags"]["disable_send_class"] = True; include("../header.inc.php"); // Make sure they are not attempting to delete there own account. // If they are, they should not reach this point anyway. if ($phpgw_info["user"]["account_id"] == $account_id) { Header("Location: " . $phpgw->link("accounts.php")); exit; } if (($account_id) && (! $confirm)) { ?>
" . lang("No"); ?> " . lang("Yes"); ?>
db->query("select account_lid from accounts where account_id=$account_id"); $phpgw->db->next_record(); $lid = $phpgw->db->f(0); $phpgw->db->query("select cal_id from webcal_entry where cal_create_by='$lid'"); while ($phpgw->db->next_record()) { $cal_id[$i] = $phpgw->db->f("cal_id"); echo "
" . $phpgw->db->f("cal_id"); $i++; } $table_locks = array('preferences','todo','addressbook','accounts', 'webcal_entry','webcal_entry_user','webcal_entry_repeats', 'webcal_entry_groups'); $phpgw->db->lock($table_locks); for ($i=0; $idb->query("delete from webcal_entry_repeats where cal_id='$cal_id[$i]'"); $phpgw->db->query("delete from webcal_entry_groups where cal_id='$cal_id[$i]'"); } $phpgw->db->query("delete from webcal_entry where cal_create_by='$lid'"); $phpgw->db->query("delete from webcal_entry_user where cal_login='$lid'"); $phpgw->db->query("delete from preferences where owner='$lid'"); $phpgw->db->query("delete from todo where todo_owner='$lid'"); $phpgw->db->query("delete from addressbook where ab_owner='$lid'"); $phpgw->db->query("delete from accounts where account_lid='$lid'"); //$phpgw->db->query("delete from users_headlines where owner='$lid'"); //$phpgw->db->query("delete from profiles where owner='$lid'"); $phpgw->db->unlock(); $sep = $phpgw->common->filesystem_separator(); //$basedir = $phpgw_info["server"]["server_root"] . $sep . "filemanager" . $sep . "users" // . $sep; $basedir = $phpgw_info["server"]["files_dir"] . $sep . "users" . $sep; //echo "

rmdir:".$basedir . $lid."

\n"; if (! @rmdir($basedir . $lid)) { $cd = 34; } else { $cd = 29; } Header("Location: " . $phpgw->link("accounts.php","cd=$cd")); } ?>