<?php /** * 机构账号管理 * $Id: org_account_delete_result.php,v 1.1 2015/10/08 11:18:46 wanggb Exp $ * @author wanggb * @package manager.public_html */ // 底层包含 require_once("manager_include.inc"); // 登录检查 require_once("check_login.inc"); // 权限检查 if (!checkAuthority("13")) { // エラー表示 $layout_pages = array(); $layout_pages["footer"] = "footer.inc"; $layout_pages["top"] = "menu.inc"; $layout_pages["middle"] = "error.inc"; $message = "权限不足,请联系系统管理员。"; require_once(MANAGER_TEMPLATE_DIR_PATH . "/layout/topmenutopsub_layout.inc"); exit; } // 参数取得 $id = ParamUtil::getRequestString("id"); $account_mst = AccountMst::getById($id); if ($account_mst == null) { // エラー表示 $layout_pages = array(); $layout_pages["left"] = "menu.inc"; $layout_pages["right"] = "error.inc"; $message = "对象不存在。"; require_once(MANAGER_TEMPLATE_DIR_PATH . "/layout/leftmenu_layout.inc"); exit; } // 数据库更新 if ($account_mst->id != 1) { $account_mst->delete_flg = true; $account_mst->save(); } // 跳到一览页 header("Location:org_account_list.php?id=" . $account_mst->user_id); exit;