267 lines
12 KiB
PHP
267 lines
12 KiB
PHP
<?php
|
|
$sub_menu = "200100";
|
|
include_once('./_common.php');
|
|
|
|
auth_check($auth[$sub_menu], 'r');
|
|
|
|
$sql_common = " from {$g4['member_table']} ";
|
|
|
|
$sql_search = " where (1) ";
|
|
if ($stx) {
|
|
$sql_search .= " and ( ";
|
|
switch ($sfl) {
|
|
case 'mb_point' :
|
|
$sql_search .= " ({$sfl} >= '{$stx}') ";
|
|
break;
|
|
case 'mb_level' :
|
|
$sql_search .= " ({$sfl} = '{$stx}') ";
|
|
break;
|
|
case 'mb_tel' :
|
|
case 'mb_hp' :
|
|
$sql_search .= " ({$sfl} like '%{$stx}') ";
|
|
break;
|
|
default :
|
|
$sql_search .= " ({$sfl} like '{$stx}%') ";
|
|
break;
|
|
}
|
|
$sql_search .= " ) ";
|
|
}
|
|
|
|
if ($is_admin != 'super')
|
|
$sql_search .= " and mb_level <= '{$member['mb_level']}' ";
|
|
|
|
if (!$sst) {
|
|
$sst = "mb_datetime";
|
|
$sod = "desc";
|
|
}
|
|
|
|
$sql_order = " order by {$sst} {$sod} ";
|
|
|
|
$sql = " select count(*) as cnt {$sql_common} {$sql_search} {$sql_order} ";
|
|
$row = sql_fetch($sql);
|
|
$total_count = $row['cnt'];
|
|
|
|
$rows = $config['cf_page_rows'];
|
|
$total_page = ceil($total_count / $rows); // 전체 페이지 계산
|
|
if (!$page) $page = 1; // 페이지가 없으면 첫 페이지 (1 페이지)
|
|
$from_record = ($page - 1) * $rows; // 시작 열을 구함
|
|
|
|
// 탈퇴회원수
|
|
$sql = " select count(*) as cnt {$sql_common} {$sql_search} and mb_leave_date <> '' {$sql_order} ";
|
|
$row = sql_fetch($sql);
|
|
$leave_count = $row['cnt'];
|
|
|
|
// 차단회원수
|
|
$sql = " select count(*) as cnt {$sql_common} {$sql_search} and mb_intercept_date <> '' {$sql_order} ";
|
|
$row = sql_fetch($sql);
|
|
$intercept_count = $row['cnt'];
|
|
|
|
$listall = "";
|
|
if (isset($sfl) || isset($stx)) // 검색일 때만 처음 버튼을 보여줌
|
|
$listall = '<a href="'.$_SERVER['PHP_SELF'].'">전체목록</a>';
|
|
|
|
$g4['title'] = '회원관리';
|
|
include_once('./admin.head.php');
|
|
|
|
$sql = " select * {$sql_common} {$sql_search} {$sql_order} limit {$from_record}, {$rows} ";
|
|
$result = sql_query($sql);
|
|
|
|
$colspan = 15;
|
|
?>
|
|
|
|
<form id="fsearch" name="fsearch" method="get">
|
|
<fieldset>
|
|
<legend>회원검색</legend>
|
|
<span>
|
|
<?php echo $listall ?>
|
|
총회원수 <?php echo number_format($total_count) ?>명 중,
|
|
<a href="?sst=mb_intercept_date&sod=desc&sfl=<?php echo $sfl ?>&stx=<?php echo $stx ?>">차단 <?php echo number_format($intercept_count) ?></a>명,
|
|
<a href="?sst=mb_leave_date&sod=desc&sfl=<?php echo $sfl ?>&stx=<?php echo $stx ?>">탈퇴 <?php echo number_format($leave_count) ?></a>명
|
|
</span>
|
|
<label for="sfl" class="sound_only">검색대상</label>
|
|
<select name="sfl">
|
|
<option value="mb_id"<?php echo get_selected($_GET['sfl'], "mb_id"); ?>>회원아이디</option>
|
|
<option value="mb_nick"<?php echo get_selected($_GET['sfl'], "mb_nick"); ?>>별명</option>
|
|
<option value="mb_name"<?php echo get_selected($_GET['sfl'], "mb_name"); ?>>이름</option>
|
|
<option value="mb_level"<?php echo get_selected($_GET['sfl'], "mb_level"); ?>>권한</option>
|
|
<option value="mb_email"<?php echo get_selected($_GET['sfl'], "mb_email"); ?>>E-MAIL</option>
|
|
<option value="mb_tel"<?php echo get_selected($_GET['sfl'], "mb_tel"); ?>>전화번호</option>
|
|
<option value="mb_hp"<?php echo get_selected($_GET['sfl'], "mb_hp"); ?>>휴대폰번호</option>
|
|
<option value="mb_point"<?php echo get_selected($_GET['sfl'], "mb_point"); ?>>포인트</option>
|
|
<option value="mb_datetime"<?php echo get_selected($_GET['sfl'], "mb_datetime"); ?>>가입일시</option>
|
|
<option value="mb_ip"<?php echo get_selected($_GET['sfl'], "mb_ip"); ?>>IP</option>
|
|
<option value="mb_recommend"<?php echo get_selected($_GET['sfl'], "mb_recommend"); ?>>추천인</option>
|
|
</select>
|
|
<label for="stx" class="sound_only">검색어<strong class="sound_only"> 필수</strong></label>
|
|
<input type="text" name="stx" value="<?php echo $stx ?>" id="stx" required class="required frm_input">
|
|
<input type="submit" class="btn_submit" value="검색">
|
|
</fieldset>
|
|
</form>
|
|
|
|
<section class="cbox">
|
|
<h2>회원 목록</h2>
|
|
<p>회원자료 삭제 시 다른 회원이 기존 회원아이디를 사용하지 못하도록 회원아이디, 이름, 별명은 삭제하지 않고 영구 보관합니다.</p>
|
|
|
|
<?php if ($is_admin == 'super') { ?>
|
|
<div id="btn_add">
|
|
<a href="./member_form.php" id="member_add">회원추가</a>
|
|
</div>
|
|
<?php } ?>
|
|
|
|
<form name="fmemberlist" id="fmemberlist" action="./member_list_update.php" onsubmit="return fmemberlist_submit(this);" method="post">
|
|
<input type="hidden" name="sst" value="<?php echo $sst ?>">
|
|
<input type="hidden" name="sod" value="<?php echo $sod ?>">
|
|
<input type="hidden" name="sfl" value="<?php echo $sfl ?>">
|
|
<input type="hidden" name="stx" value="<?php echo $stx ?>">
|
|
<input type="hidden" name="page" value="<?php echo $page ?>">
|
|
|
|
<table class="tbl_mb_list">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col" rowspan="2"><input type="checkbox" name="chkall" value="1" id="chkall" title="현재 페이지 회원 전체선택" onclick="check_all(this.form)"></th>
|
|
<th scope="col"><?php echo subject_sort_link('mb_id') ?>회원아이디</a></th>
|
|
<th scope="col"><?php echo subject_sort_link('mb_name') ?>이름</a></th>
|
|
<th scope="col">휴대폰</th>
|
|
<th scope="col" colspan="6">주소</th>
|
|
<th scope="col"><?php echo subject_sort_link('mb_today_login', '', 'desc') ?>최종접속</a></th>
|
|
<th scope="col"><?php echo subject_sort_link('mb_point', '', 'desc') ?> 포인트</a></th>
|
|
<th scope="col" rowspan="2">관리</th>
|
|
</tr>
|
|
<tr>
|
|
<th scope="col"><?php echo subject_sort_link('mb_nick') ?>별명</a></th>
|
|
<th scope="col">상태/<?php echo subject_sort_link('mb_level', '', 'desc') ?>권한</a></th>
|
|
<th scope="col">전화번호</th>
|
|
<th scope="col"><?php echo subject_sort_link('mb_email_certify', '', 'desc') ?>메일<br>인증</a></th>
|
|
<th scope="col"><?php echo subject_sort_link('mb_mailling', '', 'desc') ?>메일<br>수신</a></th>
|
|
<th scope="col"><?php echo subject_sort_link('mb_open', '', 'desc') ?>정보<br>공개</a></th>
|
|
<th scope="col"><?php echo subject_sort_link('mb_hp_certify', '', 'desc') ?>본인<br>확인</a></th>
|
|
<th scope="col"><?php echo subject_sort_link('mb_adult', '', 'desc') ?>성인<br>인증</a></th>
|
|
<th scope="col"><?php echo subject_sort_link('mb_intercept_date', '', 'desc') ?>접근<br>차단</a></th>
|
|
<th scope="col"><?php echo subject_sort_link('mb_datetime', '', 'desc') ?>가입일</a></th>
|
|
<th scope="col" title="접근가능한 그룹수">접근그룹</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php
|
|
for ($i=0; $row=sql_fetch_array($result); $i++) {
|
|
// 접근가능한 그룹수
|
|
$sql2 = " select count(*) as cnt from {$g4['group_member_table']} where mb_id = '{$row['mb_id']}' ";
|
|
$row2 = sql_fetch($sql2);
|
|
$group = '';
|
|
if ($row2['cnt'])
|
|
$group = '<a href="./boardgroupmember_form.php?mb_id='.$row['mb_id'].'">'.$row2['cnt'].'</a>';
|
|
|
|
if ($is_admin == 'group') {
|
|
$s_mod = '';
|
|
$s_del = '';
|
|
} else {
|
|
$s_mod = '<a href="./member_form.php?'.$qstr.'&w=u&mb_id='.$row['mb_id'].'">수정</a>';
|
|
//$s_del = '<a href="javascript:post_delete(\'member_delete.php\', \''.$row['mb_id'].'\');">삭제</a>';
|
|
}
|
|
$s_grp = '<a href="./boardgroupmember_form.php?mb_id='.$row['mb_id'].'">그룹</a>';
|
|
|
|
$leave_date = $row['mb_leave_date'] ? $row['mb_leave_date'] : date('Ymd', G4_SERVER_TIME);
|
|
$intercept_date = $row['mb_intercept_date'] ? $row['mb_intercept_date'] : date('Ymd', G4_SERVER_TIME);
|
|
|
|
$mb_nick = get_sideview($row['mb_id'], $row['mb_nick'], $row['mb_email'], $row['mb_homepage']);
|
|
|
|
$mb_id = $row['mb_id'];
|
|
$leave_msg = '';
|
|
$intercept_msg = '';
|
|
$intercept_title = '';
|
|
if ($row['mb_leave_date']) {
|
|
$mb_id = $mb_id;
|
|
$leave_msg = '<span class="mb_leave_msg">탈퇴함</span>';
|
|
}
|
|
else if ($row['mb_intercept_date']) {
|
|
$mb_id = $mb_id;
|
|
$intercept_msg = '<span class="mb_intercept_msg">차단됨</span>';
|
|
$intercept_title = '차단해제';
|
|
}
|
|
if ($intercept_title == '')
|
|
$intercept_title = '차단하기';
|
|
|
|
$address = $row['mb_zip1'] ? $row['mb_addr1'].' '.$row['mb_addr2'] : '';
|
|
|
|
$tr_bg = '';
|
|
if ($i%2 == 0) $tr_bg = 'class="tr_bg"';
|
|
?>
|
|
|
|
<tr <?php echo $tr_bg; ?>>
|
|
<td class="td_chk" rowspan="2">
|
|
<input type="hidden" name="mb_id[<?php echo $i ?>]" value="<?php echo $row['mb_id'] ?>" id="mb_id_<?php echo $i ?>">
|
|
<label for="chk_<?php echo $i; ?>" class="sound_only">회원선택</label>
|
|
<input type="checkbox" name="chk[]" value="<?php echo $i ?>" id="chk_<?php echo $i ?>">
|
|
</td>
|
|
<td class="td_name"><?php echo $mb_id ?></td>
|
|
<td class="td_mbname"><?php echo $row['mb_name']; ?></td>
|
|
<td><?php echo $row['mb_hp']; ?></td>
|
|
<td colspan="6" class="td_addr"><?php echo $address; ?></td>
|
|
<td><?php echo substr($row['mb_today_login'],2,8); ?></td>
|
|
<td class="td_bignum"><a href="point_list.php?sfl=mb_id&stx=<?php echo $row['mb_id'] ?>"><?php echo number_format($row['mb_point']) ?></a></td>
|
|
<td rowspan="2"><?php echo $s_mod ?><br><?php echo $s_grp ?></td>
|
|
</tr>
|
|
<tr <?php echo $tr_bg; ?>>
|
|
<td class="td_name"><div><?php echo $mb_nick ?></div></td>
|
|
<td class="">
|
|
<?php
|
|
if ($leave_msg || $intercept_msg) echo $leave_msg.' '.$intercept_msg;
|
|
else echo "정상";
|
|
?>
|
|
<?php echo get_member_level_select("mb_level[$i]", 1, $member['mb_level'], $row['mb_level']) ?>
|
|
</td>
|
|
<td><?php echo $row['mb_tel']; ?></td>
|
|
<td class="td_chk"><?php echo preg_match('/[1-9]/', $row['mb_email_certify'])?'<span class="txt_true">Yes</span>':'<span class="txt_false">No</span>'; ?></td>
|
|
<td class="td_chk"><input type="checkbox" name="mb_mailling[<?php echo $i; ?>]" <?php echo $row['mb_mailling']?'checked':''; ?> value="1"></td>
|
|
<td class="td_chk"><input type="checkbox" name="mb_open[<?php echo $i; ?>]" <?php echo $row['mb_open']?'checked':''; ?> value="1"></td>
|
|
<td class="td_chk"><input type="checkbox" name="mb_hp_certify[<?php echo $i; ?>]" <?php echo $row['mb_hp_certify']?'checked':''; ?> value="1"></td>
|
|
<td class="td_chk"><input type="checkbox" name="mb_adult[<?php echo $i; ?>]" <?php echo $row['mb_adult']?'checked':''; ?> value="1"></td>
|
|
<td class="td_chk">
|
|
<?php if(empty($row['mb_leave_date'])){ ?>
|
|
<input type="checkbox" name="mb_intercept_date[<?php echo $i; ?>]" <?php echo $row['mb_intercept_date']?'checked':''; ?> value="<?php echo $intercept_date ?>" id="mb_intercept_date_<?php echo $i ?>" title="<?php echo $intercept_title ?>">
|
|
<?php } ?>
|
|
</td>
|
|
<td><?php echo substr($row['mb_datetime'],2,8); ?></td>
|
|
<td class="td_chk"><?php echo $group ?></td>
|
|
</tr>
|
|
|
|
<?php
|
|
}
|
|
if ($i == 0)
|
|
echo "<tr><td colspan=\"".$colspan."\" class=\"empty_table\">자료가 없습니다.</td></tr>";
|
|
?>
|
|
</table>
|
|
|
|
<div class="btn_list">
|
|
<input type="submit" name="act_button" value="선택수정" onclick="document.pressed=this.value">
|
|
<input type="submit" name="act_button" value="선택삭제" onclick="document.pressed=this.value">
|
|
<?php if ($is_admin == 'super') { ?><a href="./member_form.php">회원추가</a><?php } ?>
|
|
</div>
|
|
|
|
</form>
|
|
</section>
|
|
|
|
<?php echo get_paging(G4_IS_MOBILE ? $config['cf_mobile_pages'] : $config['cf_write_pages'], $page, $total_page, '?'.$qstr.'&page='); ?>
|
|
|
|
<script>
|
|
function fmemberlist_submit(f)
|
|
{
|
|
if (!is_checked("chk[]")) {
|
|
alert(document.pressed+" 하실 항목을 하나 이상 선택하세요.");
|
|
return false;
|
|
}
|
|
|
|
if(document.pressed == "선택삭제") {
|
|
if(!confirm("선택한 자료를 정말 삭제하시겠습니까?")) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
</script>
|
|
|
|
<?php
|
|
include_once ('./admin.tail.php');
|
|
?>
|