<? 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->getListOfUser("-1") ; $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() ; }); // 회원 탈퇴 $(".jRecoverUser").click2(function(){ var userNumber = $(this).attr("userNumber"); if(confirm("회원을 복구하시겠습니까?")) { jForm.ci(); jForm.attr("action", "/action_front.php"); jForm.attr("method", "POST"); jForm.mi("userNumber", userNumber); jForm.mi("cmd", "AdminUser.recoverUser"); jForm.mi("flow", "ToS"); jForm.mi("msg", "복구되었습니다."); jForm.mei("rurl", document.URL) ; jForm.submit(); } }) ; }) ; </script> <div id="Contents" class="notice"> <h1>탈퇴회원 리스트</h1> <div class="data"> <fieldset class="search" style="margin-top:30px;"> <div class="jSearchArea" > <label> <span># 전화번호</span> <input type="text" id="searchPhoneNumber" name="searchPhoneNumber" class="wm" value="<?=$_REQUEST['searchPhoneNumber']?>" /> </label> <label> <span># 이름</span> <input type="text" id="searchUserName" name="searchUserName" class="wm" value="<?=$_REQUEST['searchUserName']?>" /> </label> <input type="button" class="button bigrounded blue jSearch" value="검색" /> </div> <!-- <div class="btngroupcenter"> <input type="button" class="button bigrounded blue jSearch" value="검색" /> </div> --> </fieldset> <table class="datacList"> <thead> <tr> <th class="no" width="5%">No</th> <th width="10%">가입일</th> <th width="10%">이름</th> <th width="10%">연락처</th> <th width="5%">사용포인트</th> <th width="5%">현재포인트</th> <th width="5%">수정</th> </tr> </thead> <tbody><!-- 10줄 리스트// 마지막 tr에 class="last" 넣어주세요 --> <? for($i=0; $i<sizeof($list); $i++){ ?> <tr class="<?=(sizeof($list)-1 == $i) ? "last" : "datacLists"?>"> <td class="no center"> <?=$vnum--?> </td> <td class="center"> <?=str_replace(" ", "<br>", $list[$i]["registDT"])?> </td> <td class="center"> <?=$list[$i]["userName"]?> </td> <td class="center"> <?=$list[$i]["userID"]?> </td> <td class="center"> <?=number_format($list[$i]["useHeartPoint"], 1)?> </td> <td class="center"> <?=number_format($list[$i]["heartPoint"], 1)?> </td> <td class="center"> <input type="button" class="button searchsmall white jRecoverUser" value="복구" userNumber="<?=$list[$i]["userNumber"]?>" /> </td> </tr> <? } ?> <?if(sizeof($list) == 0){?> <tr class="last"> <td class="no center" colspan="11">No Data</td> </tr> <?}?> </tbody> </table> <!-- Pagination --> <? include $_SERVER["DOCUMENT_ROOT"] . "/admin/inc/php/pageNavigation.php" ?> <!--//Pagination --> </div> </div> <? include $_SERVER["DOCUMENT_ROOT"] . "/admin/inc/php/footer.php" ?>