2935b7a30a8c4f9b9bebf8ae18abef141d64ed39.svn-base 7.13 KB
<? 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->getListOfAdminUser();
	$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() ;
		});

		$(".jModAdm").click2(function(){
			var no = $(this).attr("no");
			location.href = "/admin/userManage/adminView.php?no=" + no + "&rurl=" + jQuery.rich.bin2hex(document.URL);
		});


		$(".jAddAdm").click2(function(){
			location.href = "/admin/userManage/adminView.php?rurl=" + jQuery.rich.bin2hex(document.URL);
		});


		// 회원 탈퇴
		$(".jDelAdm").click2(function(){
		
			var no = $(this).attr("no");

			var noArr = new Array(no);

			if(confirm("정말 삭제하시겠습니까?"))
			{
				deleteAdmin(noArr);
			}
		}) ;


		// 단체 삭제
		$(".jDelMultiAdm").click2(function(){
			

			var noArr = new Array();
			var noCount = $(".jAdminNo:checked").length;

			if(noCount == 0)
			{
				alert("삭제할 관리자를 하나 이상 선택해주세요.");
				return false;
			}


			if(confirm("정말 삭제하시겠습니까?"))
			{
				for(var i = 0; i < noCount; i++ )
				{
					noArr[i] = $(".jAdminNo:checked:eq(" + i + ")").val();
				}

				deleteAdmin(noArr);
			}
			
		});

		$("#jCheckAll").change(function(){
			if($(this).is(":checked"))
				$(".jAdminNo").prop("checked", true);
			else
				$(".jAdminNo").prop("checked", false);
		});
		
	}) ;


	function deleteAdmin(noArr)
	{
		$.ajax({
			url : "/action_front.php?cmd=AdminUser.deleteAdminUser",
			async : false,
			cache : false,
			dataType : "json",
			data : {
				"no"	: noArr
			},
			success : function(data){
				location.reload();
			}
		});
	}

</script>


<div id="Contents"  class="notice">
    
    <h1>관리자 리스트</h1>
    
    <div class="data" style="padding-top:30px;">
    
    	<?if($loginInfo["admin_type"] == "1"){ ?>
        <fieldset class="search">
            
            <div class="jSearchArea" >
                
                <label>
                    <span># 관리자 구분</span>
                    <select id="admin_type" name="admin_type">
                    	<option value="" <?=$_REQUEST['admin_type'] == "" ? "SELECTED" : ""?> >전체</option>
                    	<option value="2" <?=$_REQUEST['admin_type'] == "2" ? "SELECTED" : ""?> >그룹관리자</option>
                    	<option value="3" <?=$_REQUEST['admin_type'] == "3" ? "SELECTED" : ""?> >상점관리자</option>
                    </select>
                </label>

				<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>

			<!--
            <div class="btngroupcenter">
                <input type="button" class="button bigrounded blue jSearch" value="검색" />
            </div>
			-->
           
        </fieldset>

		<div class="btngroupright">
			<input type="button" class="button bigrounded blue jDelMultiAdm" value="삭제" />
			<input type="button" class="button bigrounded blue jAddAdm" value="관리자 등록" />
		</div>
		<?} ?>
        <table class="datacList">
            <thead>
                <tr>
                    <th class="no" width="5%">No</th>
                    <?if($loginInfo["admin_type"] == "1"){ ?>
                    <th width="5%"><input type="checkbox" id="jCheckAll"></th>
                    <?} ?>
                    <th width="5%">관리자<br>타입</th>
                    <th width="10%">관리자 아이디</th>
                    <th width="10%">관리자명</th>
                    <th width="30%">관리 대상<br />(그룹 명, 상점명)</th>
                    <th width="10%">등록일</th>
                    <th width="20%">-</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>
                    <?if($loginInfo["admin_type"] == "1"){ ?>
					<td class="center">
                        <input type="checkbox" class="jAdminNo" value="<?=$list[$i]["no"] ?>" >
                    </td>
                    <?} ?>
                    <td class="center">
                        <?=$list[$i]["admin_type"] == "2" ? "그룹" : "상점"?>
                    </td>
                    <td class="center">
                        <?=$list[$i]["admin_id"]?>
                    </td>
                    <td class="center">
                        <?=$list[$i]["admin_name"]?>
                    </td>
                    <td class="center">
                        <?=$list[$i]["target_name"]?>
                    </td>
                    <td class="center">
                        <?=str_replace(" ", "<br>", $list[$i]["regist_dt"])?>
                    </td>
                    <td class="center">
                    	<input type="button" class="button searchsmall white jModAdm" value="상세보기" no="<?=$list[$i]["no"]?>" />
                    	<?if($loginInfo["admin_type"] == "1"){ ?>
                    	<input type="button" class="button searchsmall white jDelAdm" value="삭제" no="<?=$list[$i]["no"]?>" />
                    	<?} ?>
                    </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" ?>