138 lines
4.2 KiB
PHP
138 lines
4.2 KiB
PHP
<?
|
|
include $_SERVER[DOCUMENT_ROOT] . "/backoffice/header.php";
|
|
if(!in_array("admin_manage",$_SESSION[$_SITE["DOMAIN"]]["ADMIN"]["AUTH"]) && $_SESSION[$_SITE["DOMAIN"]]["ADMIN"]["GRADE"]!="ROOT"):
|
|
jsMsg("권한이 없습니다.");
|
|
jsHistory("-1");
|
|
endif;
|
|
|
|
$scale="20";
|
|
|
|
//DB연결
|
|
$dblink = SetConn($_conf_db["main_db"]);
|
|
|
|
$arrList = getArticleList($_conf_tbl["admin"], $scale, $_REQUEST[offset],"");
|
|
|
|
//_DEBUG($arrMenuList);
|
|
|
|
//DB해제
|
|
SetDisConn($dblink);
|
|
?>
|
|
<script language="javascript" src="/common/util.js"></script>
|
|
<script language="javascript">
|
|
function delAdmin(idx){
|
|
var cfm;
|
|
cfm =false;
|
|
cfm = confirm("이 관리자를 삭제 하시겠습니까?");
|
|
if(cfm==true){
|
|
document.frmBBSHidden.idx.value = idx;
|
|
document.frmBBSHidden.submit();
|
|
}
|
|
}
|
|
|
|
function CheckForm(frm){
|
|
if (frm.id.value==""){
|
|
alert("ID 를 입력하여 주십시요.");
|
|
frm.id.focus();
|
|
return false;
|
|
}
|
|
if (frm.id.value.length < 2 || frm.id.value.length > 20) {
|
|
alert("ID는 2~20자리입니다.");
|
|
frm.id.focus();
|
|
return false;
|
|
}
|
|
if (hangul_chk(frm.id.value) != true ){
|
|
alert("ID에 한글이나 여백은 사용할 수 없습니다.");
|
|
frm.id.focus();
|
|
return false;
|
|
}
|
|
|
|
}
|
|
</script>
|
|
<div id="admin-container">
|
|
<? include "menu.php"; ?>
|
|
<div id="admin-content">
|
|
<h2 class="admin-title">관리자 관리</h2>
|
|
|
|
<div class="admin-search">
|
|
<form name="frmBBS" method="post" action="admin_evn.php" onSubmit="return CheckForm(this)">
|
|
<input type="hidden" name="evnMode" value="createAdmin">
|
|
<div class="total"> <strong>전체 : <?=number_format($arrList['total'])?> 개</strong></div>
|
|
<div class="keyword"><label for="id">신규 관리자 ID :</label> <input type="text" name="id" id="id" maxlength="20" style="width:160px;" class="input"/> <input type="image" src="/backoffice/images/btn_add_admin.gif" alt="관리자 추가" /></div>
|
|
</form>
|
|
</div>
|
|
<table class="admin-table-type1">
|
|
<colgroup>
|
|
<col width="5%" />
|
|
<col width="10%" />
|
|
<col width="5%" />
|
|
<col width="10%" />
|
|
<col width="10%" />
|
|
<col width="5%" />
|
|
<col width="10%" />
|
|
<col width="25%" />
|
|
<col width="10%" />
|
|
<col width="10%" />
|
|
</colgroup>
|
|
<thead>
|
|
<tr>
|
|
<th scope="col">No.</th>
|
|
<th scope="col">ID</th>
|
|
<th scope="col">권한</th>
|
|
<th scope="col">이름</th>
|
|
<th scope="col">비밀번호</th>
|
|
<th scope="col">직급</th>
|
|
<th scope="col">전화</th>
|
|
<th scope="col">관리권한</th>
|
|
<th scope="col">생성일</th>
|
|
<th scope="col">관리</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?if($arrList['list']['total'] > 0):?>
|
|
<?for ($i=0;$i<$arrList['list']['total'];$i++) {?>
|
|
<tr>
|
|
<td><?=number_format($arrList['total']-$i-$_REQUEST[offset])?></td>
|
|
<td><?=$arrList['list'][$i]['a_id']?></td>
|
|
<td><?=$arrList['list'][$i]['a_grade']?></td>
|
|
<td><a href="admin_list.php?a_id=<?=$arrList['list'][$i]['a_id']?>">
|
|
<?=$arrList['list'][$i]['a_name']?>
|
|
</a></td>
|
|
<td><?=$arrList['list'][$i]['a_pw']?></td>
|
|
<td><?=$arrList['list'][$i]['a_class']?></td>
|
|
<td><?=$arrList['list'][$i]['a_phone']?></td>
|
|
<td class="space-left"><ul><?
|
|
$arrAuthCode = explode(",",$arrList['list'][$i]['a_auth']);
|
|
foreach($arrAuthCode as $val){
|
|
if($arrayMenuList[trim($val)]){
|
|
echo "<li>- " . $arrayMenuList[trim($val)] . "</li>";
|
|
}
|
|
}
|
|
?></ul>
|
|
</td>
|
|
<td><?=substr($arrList['list'][$i]['a_date'],0,10)?></td>
|
|
<td><a href="admin_info.php?idx=<?=$arrList['list'][$i]['idx']?>"><img src="/backoffice/images/k_modify.gif" alt="수정" /></a> <a href="javascript:delAdmin('<?=$arrList['list'][$i]['idx']?>');"><img src="/backoffice/images/k_delete.gif" alt="삭제" /></a> </td>
|
|
</tr>
|
|
<?}?>
|
|
<?else:?>
|
|
<tr height="100">
|
|
<td width="100%" colspan="10" >생성된 관리자가 없습니다.</td>
|
|
</tr>
|
|
<?endif;?>
|
|
</tbody>
|
|
</table>
|
|
|
|
<div class="paginate">
|
|
<?=pageNavigation($arrList['total'],$scale,$pagescale,$_REQUEST[offset],"")?>
|
|
</div>
|
|
|
|
<form name="frmBBSHidden" method="post" action="admin_evn.php">
|
|
<input type="hidden" name="evnMode" value="deleteAdmin">
|
|
<input type="hidden" name="idx">
|
|
</form>
|
|
|
|
</div>
|
|
</div>
|
|
<?
|
|
include $_SERVER[DOCUMENT_ROOT] . "/backoffice/footer.php";
|
|
?>
|