/home/mjc1/public_html/adm/boardgroupmember_list.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
<?php
$sub_menu 
"300200";
include_once(
'./_common.php');

auth_check($auth[$sub_menu], 'r');

$gr get_group($gr_id);
if (!
$gr['gr_id']) {
    
alert('존재하지 않는 그룹입니다.');
}

$sql_common " from {$g5['group_member_table']} a
                         left outer join 
{$g5['member_table']} b on (a.mb_id = b.mb_id) ";

$sql_search " where gr_id = '{$gr_id}' ";
// 회원아이디로 검색되지 않던 오류를 수정
if (isset($stx) && $stx) {
    
$sql_search .= " and ( ";
    switch (
$sfl) {
        default :
            
$sql_search .= " ($sfl like '%$stx%') ";
            break;
    }
    
$sql_search .= " ) ";
}

if (!
$sst) {
    
$sst  "gm_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 1$page 1// 페이지가 없으면 첫 페이지 (1 페이지)
$from_record = ($page 1) * $rows// 시작 열을 구함

$sql " select *
            
{$sql_common}
            
{$sql_search}
            
{$sql_order}
            limit 
{$from_record}{$rows} ";
$result sql_query($sql);

$g5['title'] = $gr['gr_subject'].' 그룹 접근가능회원 (그룹아이디:'.$gr['gr_id'].')';
include_once(
'./admin.head.php');

$colspan 7;
?>

<form name="fsearch" id="fsearch" class="local_sch01 local_sch" method="get">
<input type="hidden" name="gr_id" value="<?php echo $gr_id ?>">
<label for="sfl" class="sound_only">검색대상</label>
<select name="sfl" id="sfl">
    <option value="a.mb_id"<?php echo get_selected($_GET['sfl'], "a.mb_id"?>>회원아이디</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" value="검색" class="btn_submit">
</form>

<form name="fboardgroupmember" id="fboardgroupmember" action="./boardgroupmember_update.php" onsubmit="return fboardgroupmember_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 ?>">
<input type="hidden" name="token" value="<?php echo $token ?>">
<input type="hidden" name="gr_id" value="<?php echo $gr_id ?>">
<input type="hidden" name="w" value="ld">

<div class="tbl_head01 tbl_wrap">
    <table>
    <caption><?php echo $g5['title']; ?> 목록</caption>
    <thead>
    <tr>
        <th scope="col">
            <label for="chkall" class="sound_only">접근가능회원 전체</label>
            <input type="checkbox" name="chkall" value="1" id="chkall" onclick="check_all(this.form)">
        </th>
        <th scope="col">그룹</th>
        <th scope="col"><?php echo subject_sort_link('b.mb_id''gr_id='.$gr_id?>회원아이디</a></th>
        <th scope="col"><?php echo subject_sort_link('b.mb_name''gr_id='.$gr_id?>이름</a></th>
        <th scope="col"><?php echo subject_sort_link('b.mb_nick''gr_id='.$gr_id?>별명</a></th>
        <th scope="col"><?php echo subject_sort_link('b.mb_today_login''gr_id='.$gr_id?>최종접속</a></th>
        <th scope="col"><?php echo subject_sort_link('a.gm_datetime''gr_id='.$gr_id?>처리일시</a></th>
    </tr>
    </thead>
    <tbody>
    <?php
    
for ($i=0$row=sql_fetch_array($result); $i++)
    {
        
// 접근가능한 그룹수
        
$sql2 " select count(*) as cnt from {$g5['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>';

        
$mb_nick get_sideview($row['mb_id'], $row['mb_nick'], $row['mb_email'], $row['mb_homepage']);

        
$bg 'bg'.($i%2);
    
?>
    <tr class="<?php echo $bg?>">
        <td class="td_chk">
            <label for="chk_<?php echo $i?>" class="sound_only"><?php echo $row['mb_nick'?> 회원</label>
            <input type="checkbox" name="chk[]" value="<?php echo $row['gm_id'?>" id="chk_<?php echo $i ?>">
        </td>
        <td class="td_grid"><?php echo $group ?></td>
        <td class="td_mbid"><?php echo $row['mb_id'?></td>
        <td class="td_mbname"><?php echo get_text($row['mb_name']); ?></td>
        <td class="td_name sv_use"><?php echo $mb_nick ?></td>
        <td class="td_datetime"><?php echo substr($row['mb_today_login'],2,8?></td>
        <td class="td_datetime"><?php echo $row['gm_datetime'?></td>
    </tr>
    <?php
    
}

    if (
$i == 0)
    {
        echo 
'<tr><td colspan="'.$colspan.'" class="empty_table">자료가 없습니다.</td></tr>';
    }
    
?>
    </tbody>
    </table>
</div>

<div class="btn_list01 btn_list">
    <input type="submit" name="" value="선택삭제">
</div>
</form>

<?php echo get_paging(G5_IS_MOBILE $config['cf_mobile_pages'] : $config['cf_write_pages'], $page$total_page"{$_SERVER['SCRIPT_NAME']}?$qstr&amp;gr_id=$gr_id&page="); ?>

<script>
function fboardgroupmember_submit(f)
{
    if (!is_checked("chk[]")) {
        alert("선택삭제 하실 항목을 하나 이상 선택하세요.");
        return false;
    }

    return true;
}
</script>

<?php
include_once('./admin.tail.php');
?>