forked from devsam/core
109 lines
3.9 KiB
PHP
109 lines
3.9 KiB
PHP
<?php
|
|
namespace sammo;
|
|
|
|
require_once('_common.php');
|
|
|
|
$session = Session::requireLogin();
|
|
$db = RootDB::db();
|
|
$userGrade = $session->userGrade;
|
|
|
|
$session->setReadOnly();
|
|
|
|
if($userGrade < 6){
|
|
header('Location:'.ROOT);
|
|
die();
|
|
}
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>유저 관리</title>
|
|
|
|
<!-- 스타일 -->
|
|
<link type="text/css" rel="stylesheet" href="../e_lib/bootstrap.min.css">
|
|
<link type="text/css" rel="stylesheet" href='../css/admin_member.css'>
|
|
|
|
<script type="text/javascript" src='../js/common.js'></script>
|
|
<script type="text/javascript" src='../e_lib/jquery-3.2.1.min.js'></script>
|
|
<script type="text/javascript" src="../e_lib/bootstrap.bundle.min.js"></script>
|
|
<script type="text/javascript" src='../js/func.js'></script>
|
|
|
|
<script type="text/javascript" src='../js/admin_member.js'></script>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="card">
|
|
<div class="card-header">
|
|
<a href="entrance.php"><button class="btn btn-primary" style="float:right;">돌아가기</button></a>
|
|
<h3>회원 관리</h3>
|
|
|
|
</div>
|
|
<div class="card-body">
|
|
가입 허용
|
|
<div id="radios_allow_join" class="btn-group btn-group-toggle" data-toggle="buttons">
|
|
<label class="btn btn-secondary">
|
|
<input type="radio" name="allow_join" value="1" id="allow_join_y" autocomplete="off">Y
|
|
</label>
|
|
<label class="btn btn-secondary">
|
|
<input type="radio" name="allow_join" value="0" id="allow_join_n" autocomplete="off">N
|
|
</label>
|
|
</div>
|
|
|
|
로그인 허용
|
|
<div id="radios_allow_login" class="btn-group btn-group-toggle" data-toggle="buttons">
|
|
<label class="btn btn-secondary">
|
|
<input type="radio" name="allow_login" value="1" id="allow_login_y" autocomplete="off">Y
|
|
</label>
|
|
<label class="btn btn-secondary">
|
|
<input type="radio" name="allow_login" value="0" id="allow_login_n" autocomplete="off">N
|
|
</label>
|
|
</div>
|
|
|
|
<div class="btn-group" role="group">
|
|
<button onclick="changeSystem('scrub_deleted');" type="button" class="btn btn-secondary">탈퇴 계정 정리(1개월+)</button>
|
|
<button onclick="changeSystem('scrub_icon');" type="button" class="btn btn-secondary">전콘 정리(1개월+)</button>
|
|
</div>
|
|
|
|
<button onclick="changeSystem('scrub_old_user');" type="button" class="btn btn-secondary">오래된 계정 정리(6개월+)</button>
|
|
|
|
</div>
|
|
<h6 class="card-header">회원 목록</h6>
|
|
<table id="user_list_frame" class="table table-hover table-sm table-striped">
|
|
<colgroup>
|
|
<col>
|
|
<col>
|
|
<col>
|
|
<col>
|
|
<col>
|
|
<col>
|
|
<col>
|
|
<col>
|
|
<col>
|
|
<col>
|
|
<col style="width:200px;">
|
|
</colgroup>
|
|
<thead class="thead-dark">
|
|
<tr>
|
|
<th scope="col">코드</th>
|
|
<th scope="col">유저명</th>
|
|
<th scope="col">EMAIL</th>
|
|
<th scope="col">등급</th>
|
|
<th scope="col">닉네임</th>
|
|
<th scope="col">전콘</th>
|
|
<th scope="col">장수명</th>
|
|
<th scope="col">가입<br>일자</th>
|
|
<th scope="col">최근<br>로그인</th>
|
|
<th scope="col">탈퇴<br>신청</th>
|
|
<th scope="col">명령</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="user_list">
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|