<? include $_SERVER["DOCUMENT_ROOT"] . "/common/classes/AdminUser.php" ?> <? include $_SERVER["DOCUMENT_ROOT"] . "/admin/inc/php/header.php" ?> <? include $_SERVER["DOCUMENT_ROOT"] . "/admin/inc/php/leftUserManage.php" ?> <? $obj = new AdminUser($_REQUEST, ""); $userInfo = $obj->getInfoOfUser(); $rurl = pack("H*", $_REQUEST["rurl"]) ; ?> <script language="javascript"> var _rurl = "<?=$rurl?>"; var _no = "<?=$_REQUEST[no]?>"; $(document).ready(function(){ //=====프레입웤 변수들==================================================================================// var FORM_TARGET_CLS_NM = ".data" ; // 폼을 동적 wrap 할 타겟 ID이름 var FORM_NAME = "alf" ; // 폼이름 var FORM_METHOD = "POST" ; // 폼 메쏘드 var FORM_USE_FILE = false ; // 파일폼 사용 여부 var FORM_ACTION = "/action_front.php" ; var NEXT_CMD = "" ; // 다은 수행 할 cmd //=====================================================================================================// var dates = $("[name='birthDT[]']").datepicker({ showMonthAfterYear:true, inline: true, changeMonth: true, changeYear: true, yearRange: '1970', dateFormat : 'yy-mm-dd', dayNamesMin:['일', '월', '화', '수', '목', '금', ' 토'], monthNames:['1월','2월','3월','4월','5월','6월','7 월','8월','9월','10월','11월','12월'], monthNamesShort:['1월','2월','3월','4월','5월','6월','7월','8월','9월','10월','11월','12월'], showButtonPanel: true, currentText: '오늘 ' , closeText: '닫기' }); var jForm = $(FORM_TARGET_CLS_NM).mf({ "name" : FORM_NAME , "method" : FORM_METHOD , "action" : FORM_ACTION , "useFile" : FORM_USE_FILE }) ; $(".jCancel").click2(function(){ location.href = _rurl; }); $(".jDelUser").click2(function(){ var noArr = new Array(_no); if(confirm("정말 삭제하시겠습니까?")) { deleteUser(noArr); } }); }) ; function deleteUser(noArr) { $.ajax({ url : "/action_front.php?cmd=AdminUser.deleteUser", async : false, cache : false, dataType : "json", data : { "no" : noArr }, success : function(data){ alert("삭제되었습니다"); location.href = _rurl; } }); } </script> <div id="Contents" class="notice"> <h1>회원 상세화면</h1> <!-- location area --> <h2> 회원 관리 > <span>회원 상세화면</span> </h2> <!-- location area --> <div class="data" style="width:50%;"> <h3> <? if($userInfo["member_type"] == 'M') echo "멤버십 회원 기본정보"; else if($userInfo["member_type"] == 'V') echo "VIP 회원 기본정보"; else echo "일반 회원 기본정보"; ?> </h3> <table class="datav" style="width:100%;"> <colgroup> <col width="30%" /> <col width="70%" /> </colgroup> <tr> <th style="height:25px;">이메일 주소</th> <td class="l"> <? if($userInfo["regi_type"] == "E") echo $userInfo["id"]; else if($userInfo["regi_type"] == "K") echo "카카오톡 가입"; else if($userInfo["regi_type"] == "F") echo "페이스북 가입"; ?> </td> </tr> <tr> <th style="height:25px;">이름</th> <td class="l"><?=$userInfo["name"] ?></td> </tr> <tr> <th style="height:25px;">전화번호</th> <td class="l"><?=$userInfo["tel"] ?></td> </tr> <tr> <th style="height:25px;">가입날짜</th> <td class="l"><?=$userInfo["reg_dt"] ?></td> </tr> <?if($_REQUEST["isMS"] == "0"){ ?> <tr> <th style="height:25px;">멤버쉽 신청 유무</th> <td class="l"><?=($userInfo["member_type"] == "M" || $userInfo["member_type"] == "H") ? "O" : "X"?></td> </tr> <tr> <th style="height:25px;">승인여부</th> <td class="l"> <?if($userInfo["group_fk"] > 0 && $userInfo["member_type"] == "H"){ ?> 대기중 <?} elseif ($userInfo["group_fk"] > 0 && $userInfo["member_type"] == "M"){ ?> 승인 <?} elseif ($userInfo["group_fk"] > 0 && $userInfo["member_type"] == "N"){ ?> 거절 <?} else { ?> - <?} ?> </td> </tr> <?}else{ ?> <tr> <th style="height:25px;">소속 그룹</th> <td class="l"><?=$userInfo["group_name"]?></td> </tr> <?} ?> </table> <div class="btngroupcenter"> <span class="button bigrounded blue jCancel">목록으로 </span> <?if($loginInfo["admin_type"] == "1"){ ?> <span class="button bigrounded blue jDelUser" >삭제</span> <?} ?> </div> </div> </div>