<? 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, "") ; $list = $obj->getListOfUserForBoard("V", null) ; $vnum = $obj->virtualNum ; ?> <script> $(document).ready(function(){ //=====프레입웤 변수들==================================================================================// var FORM_TARGET_CLS_NM = "DIV#Contents" ; // 폼을 동적 wrap 할 타겟 ID이름 var FORM_NAME = "nf" ; // 폼이름 var FORM_METHOD = "GET" ; // 폼 메쏘드 var FORM_USE_FILE = false ; // 파일폼 사용 여부 var FORM_ACTION = document.URL ; var NEXT_CMD = "" ; // 다은 수행 할 cmd //=====================================================================================================// var jForm = $(FORM_TARGET_CLS_NM).mf({ "name" : FORM_NAME , "method" : FORM_METHOD , "action" : FORM_ACTION , "useFile" : FORM_USE_FILE }) ; // 페이징 $(".jPage").click2(function(){ jForm.ci() ; jForm.mi("page",$(this).attr("page")) ; jForm.submit() ; }) ; $(".jAutoSearch").change(function(){ jForm.ci() ; jForm.submit() ; }); $(".jSearch").click2(function(){ jForm.ci() ; jForm.submit() ; }); $(".jViewUser").click2(function(){ var no = $(this).attr("no"); location.href = "/admin/userManage/userView.php?isMS=2&no=" + no + "&rurl=" + jQuery.rich.bin2hex(document.URL); }); $(".jAddUserExcel").click2(function(){ var s=$("#search_text").val(); location.href = "/admin/excel/vipUserExcelList.php?search_text="+s; }); // 회원 탈퇴 $(".jDelUser").click2(function(){ var no = $(this).attr("no"); var noArr = new Array(no); if(confirm("정말 삭제하시겠습니까?")) { deleteUser(noArr); } }) ; // 단체 삭제 $(".jDelUserMulti").click2(function(){ var noArr = new Array(); var noCount = $(".jUserNo:checked").length; if(noCount == 0) { alert("삭제할 관리자를 하나 이상 선택해주세요."); return false; } if(confirm("정말 삭제하시겠습니까?")) { for(var i = 0; i < noCount; i++ ) { noArr[i] = $(".jUserNo:checked:eq(" + i + ")").val(); } deleteUser(noArr); } }); $(".jBtnV").click2(function(){ var no = $(this).attr("no"); var member_type = $(this).attr("member_type"); $.ajax({ url : "/action_front.php?cmd=AdminUser.processRequestMemberShipUser", async : false, cache : false, dataType : "json", data : { "no" : no, "member_type" : member_type }, success : function(data){ alert(data.returnMessage); location.reload(); } }); }); $("#jCheckAll").change(function(){ if($(this).is(":checked")) $(".jUserNo").prop("checked", true); else $(".jUserNo").prop("checked", false); }); }) ; 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.reload(); } }); } </script> <div id="Contents" class="notice"> <h1>VIP 회원 리스트</h1> <div class="data"> <fieldset class="search" style="margin-top:30px;"> <div class="jSearchArea" > <label> <span># 이메일, 이름, 전화번호</span> <input type="text" id="search_text" name="search_text" class="wm" value="<?=$_REQUEST['search_text']?>" /> </label> <input type="button" class="button bigrounded blue jSearch" value="검색" /> </div> </fieldset> <?if($loginInfo["admin_type"] == "1"){ ?> <div class="btngroupright"> <input type="button" class="button bigrounded blue jAddUserExcel" value="회원EXCEL" /> <input type="button" class="button bigrounded blue jDelUserMulti" value="삭제" /> </div> <?} ?> <table class="datacList"> <thead> <tr> <th class="no" width="5%">No</th> <th width="3%"><input type="checkbox" id="jCheckAll"></th> <th width="13%">이메일</th> <th width="6%">이름</th> <th width="8%">전화번호</th> <th width="10%">소속그룹</th> <th width="5%">VIP<br>회원여부</th> <th width="10%">승인 상태</th> <th width="10%">가입 날짜</th> <th width="15%">-</th> </tr> </thead> <tbody><!-- 10줄 리스트// 마지막 tr에 class="last" 넣어주세요 --> <? $recounter = 0; for($i=0; $i<sizeof($list); $i++){ ?> <tr class="<?=(sizeof($list)-1 == $i) ? "last" : "datacLists"?>"> <td class="no center"> <?=$vnum--?> </td> <td class="center"> <input type="checkbox" class="jUserNo" value="<?=$list[$i]["no"] ?>" > </td> <td class="center"> <? if($list[$i]["regi_type"] == "E") echo $list[$i]["id"]; else if($list[$i]["regi_type"] == "K") echo "카카오톡 가입"; else if($list[$i]["regi_type"] == "F") echo "페이스북 가입"; ?> </td> <td class="center"> <?=$list[$i]["name"]?> </td> <td class="center"> <?=$list[$i]["tel"]?> </td> <td class="center"> <?=$list[$i]["group_name"]?> </td> <td class="center"> <?=($list[$i]["member_type"] == "V") ? "O" : "X"?> </td> <td class="center"> <?if($list[$i]["group_fk"] > 0 && $list[$i]["member_type"] == "VH"){ ?> <input type="button" class="button searchsmall white jBtnV" value="승인" no="<?=$list[$i]["no"]?>" member_type="V"/> <input type="button" class="button searchsmall white jBtnV" value="거절" no="<?=$list[$i]["no"]?>" member_type="N" /> <?} elseif ($list[$i]["group_fk"] > 0 && $list[$i]["member_type"] == "V"){ ?> 승인 <?} elseif ($list[$i]["group_fk"] > 0 && $list[$i]["member_type"] == "N"){ ?> 거절 <?} else { ?> - <?} ?> </td> <td class="center"> <?=$list[$i]["reg_dt"]?> </td> <td class="center"> <input type="button" class="button searchsmall white jViewUser" value="상세보기" no="<?=$list[$i]["no"]?>" /> <?if($loginInfo["admin_type"] == "1"){ ?> <input type="button" class="button searchsmall white jDelUser" value="삭제" no="<?=$list[$i]["no"]?>" /> <?} ?> </td> </tr> <? } ?> <?if(sizeof($list) == 0){?> <tr class="last"> <td class="no center" colspan="11">No Data</td> </tr> <?} //$obj->endBlock = $recounter/20 + 1; ?> </tbody> </table> <!-- Pagination --> <? include $_SERVER["DOCUMENT_ROOT"] . "/admin/inc/php/pageNavigation.php" ?> <!--//Pagination --> </div> <div id="jDialogArea" style="display:none;"> <table class="datav" style="width:100%;"> <tr> <th style="height:25px; width:70px;">포인트</th> <td> <input type="input" id="jAddHeartPoint" value="" style="width:100%;"/> </td> </tr> </table> </div> </div> <? include $_SERVER["DOCUMENT_ROOT"] . "/admin/inc/php/footer.php" ?>