/home/mjc1/public_html/adm/board_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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
<?php
$sub_menu 
"300100";
include_once(
'./_common.php');

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

$sql_common " from {$g5['board_table']} a ";
$sql_search " where (1) ";

if (
$is_admin != "super") {
    
$sql_common .= " , {$g5['group_table']} b ";
    
$sql_search .= " and (a.gr_id = b.gr_id and b.gr_admin = '{$member['mb_id']}') ";
}

if (
$stx) {
    
$sql_search .= " and ( ";
    switch (
$sfl) {
        case 
"bo_table" :
            
$sql_search .= " ($sfl like '$stx%') ";
            break;
        case 
"a.gr_id" :
            
$sql_search .= " ($sfl = '$stx') ";
            break;
        default :
            
$sql_search .= " ($sfl like '%$stx%') ";
            break;
    }
    
$sql_search .= " ) ";
}

if (!
$sst) {
    
$sst  "a.gr_id, a.bo_table";
    
$sod "asc";
}
$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);

$listall '<a href="'.$_SERVER['SCRIPT_NAME'].'" class="ov_listall">전체목록</a>';

$g5['title'] = '게시판관리';
include_once(
'./admin.head.php');

$colspan 15;
?>

<div class="local_ov01 local_ov">
    <?php echo $listall ?>
    생성된 게시판수 <?php echo number_format($total_count?>
</div>

<form name="fsearch" id="fsearch" class="local_sch01 local_sch" method="get">

<label for="sfl" class="sound_only">검색대상</label>
<select name="sfl" id="sfl">
    <option value="bo_table"<?php echo get_selected($_GET['sfl'], "bo_subject"true); ?>>TABLE</option>
    <option value="bo_subject"<?php echo get_selected($_GET['sfl'], "bo_subject"); ?>>제목</option>
    <option value="a.gr_id"<?php echo get_selected($_GET['sfl'], "a.gr_id"); ?>>그룹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="fboardlist" id="fboardlist" action="./board_list_update.php" onsubmit="return fboardlist_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 ?>">

<?php if ($is_admin == 'super') { ?>
<div class="btn_add01 btn_add">
    <div class="btn_list01 btn_list pos_absol">
        <input type="submit" name="act_button" value="선택수정" onclick="document.pressed=this.value">
        <?php if ($is_admin == 'super') { ?>
        <input type="submit" name="act_button" value="선택삭제" onclick="document.pressed=this.value">
        <?php ?>
    </div>
    <a href="./board_form.php" id="bo_add">게시판 추가</a>
</div>
<?php } else {?>
    <div class="btn_list01 btn_list">
        <input type="submit" name="act_button" value="선택수정" onclick="document.pressed=this.value">
        <?php if ($is_admin == 'super') { ?>
        <input type="submit" name="act_button" value="선택삭제" onclick="document.pressed=this.value">
        <?php ?>
    </div>
<?php ?>

<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"><?php echo subject_sort_link('a.gr_id'?>그룹</a></th>
        <th scope="col"><?php echo subject_sort_link('bo_table'?>TABLE</a></th>
        <th scope="col"><?php echo subject_sort_link('bo_skin''''desc'?>스킨</a></th>
        <th scope="col"><?php echo subject_sort_link('bo_mobile_skin''''desc'?>모바일<br>스킨</span></a></th>
        <th scope="col"><?php echo subject_sort_link('bo_subject'?>제목</a></th>
        <th scope="col">읽기P<span class="sound_only">포인트</span></th>
        <th scope="col">쓰기P<span class="sound_only">포인트</span></th>
        <th scope="col">댓글P<span class="sound_only">포인트</span></th>
        <th scope="col">다운P<span class="sound_only">포인트</span></th>
        <th scope="col"><?php echo subject_sort_link('bo_use_sns'?>SNS<br>사용</a></th>
        <th scope="col"><?php echo subject_sort_link('bo_use_search'?>검색<br>사용</a></th>
        <th scope="col"><?php echo subject_sort_link('bo_order'?>출력<br>순서</a></th>
        <th scope="col">접속기기</th>
        <th scope="col">관리</th>
    </tr>
    </thead>
    <tbody>
    <?php
    
for ($i=0$row=sql_fetch_array($result); $i++) {
        
$one_update '<a href="./board_form.php?w=u&amp;bo_table='.$row['bo_table'].'&amp;'.$qstr.'">수정</a>';
        
$one_copy '<a href="./board_copy.php?bo_table='.$row['bo_table'].'" class="board_copy" target="win_board_copy">복사</a>';

        
$bg 'bg'.($i%2);
    
?>

    <tr class="<?php echo $bg?>">
        <td class="td_chk">
            <label for="chk_<?php echo $i?>" class="sound_only"><?php echo get_text($row['bo_subject']) ?></label>
            <input type="checkbox" name="chk[]" value="<?php echo $i ?>" id="chk_<?php echo $i ?>">
        </td>
        <td>
            <?php if ($is_admin == 'super'){ ?>
                <?php echo get_group_select("gr_id[$i]"$row['gr_id']) ?>
            <?php }else{ ?>
                <input type="hidden" name="gr_id[<?php echo $i ?>]" value="<?php echo $row['gr_id'?>"><?php echo $row['gr_subject'?>
            <?php ?>
        </td>
        <td>
            <input type="hidden" name="board_table[<?php echo $i ?>]" value="<?php echo $row['bo_table'?>">
            <a href="<?php echo G5_BBS_URL ?>/board.php?bo_table=<?php echo $row['bo_table'?>"><?php echo $row['bo_table'?></a>
        </td>
        <td>
            <label for="bo_skin_<?php echo $i?>" class="sound_only">스킨</label>
            <?php echo get_skin_select('board''bo_skin_'.$i"bo_skin[$i]"$row['bo_skin']); ?>
        </td>
        <td>
            <label for="bo_mobile_skin_<?php echo $i?>" class="sound_only">모바일 스킨</label>
            <?php echo get_mobile_skin_select('board''bo_mobile_skin_'.$i"bo_mobile_skin[$i]"$row['bo_mobile_skin']); ?>
        </td>
        <td>
            <label for="bo_subject_<?php echo $i?>" class="sound_only">게시판 제목<strong class="sound_only"> 필수</strong></label>
            <input type="text" name="bo_subject[<?php echo $i ?>]" value="<?php echo get_text($row['bo_subject']) ?>" id="bo_subject_<?php echo $i ?>" required class="required frm_input bo_subject full_input" size="10">
        </td>
        <td class="td_numsmall">
            <label for="bo_read_point_<?php echo $i?>" class="sound_only">읽기 포인트</label>
            <input type="text" name="bo_read_point[<?php echo $i ?>]" value="<?php echo $row['bo_read_point'?>" id="bo_read_point_<?php echo $i?>" class="frm_input" size="2">
        </td>
        <td class="td_numsmall">
            <label for="bo_write_point_<?php echo $i?>" class="sound_only">쓰기 포인트</label>
            <input type="text" name="bo_write_point[<?php echo $i ?>]" value="<?php echo $row['bo_write_point'?>" id="bo_write_point_<?php echo $i?>" class="frm_input" size="2">
        </td>
        <td class="td_numsmall">
            <label for="bo_comment_point_<?php echo $i?>" class="sound_only">댓글 포인트</label>
            <input type="text" name="bo_comment_point[<?php echo $i ?>]" value="<?php echo $row['bo_comment_point'?>" id="bo_comment_point_<?php echo $i?>" class="frm_input" size="2">
        </td>
        <td class="td_numsmall">
            <label for="bo_download_point_<?php echo $i?>" class="sound_only">다운 포인트</label>
            <input type="text" name="bo_download_point[<?php echo $i ?>]" value="<?php echo $row['bo_download_point'?>" id="bo_download_point_<?php echo $i?>" class="frm_input" size="2">
        </td>
        <td class="td_chk">
            <label for="bo_use_sns_<?php echo $i?>" class="sound_only">SNS 사용</label>
            <input type="checkbox" name="bo_use_sns[<?php echo $i ?>]" value="1" id="bo_use_sns_<?php echo $i ?><?php echo $row['bo_use_sns']?"checked":"" ?>>
        </td>
        <td class="td_chk">
            <label for="bo_use_search_<?php echo $i?>" class="sound_only">검색 사용</label>
            <input type="checkbox" name="bo_use_search[<?php echo $i ?>]" value="1" id="bo_use_search_<?php echo $i ?><?php echo $row['bo_use_search']?"checked":"" ?>>
        </td>
        <td class="td_chk">
            <label for="bo_order_<?php echo $i?>" class="sound_only">출력 순서</label>
            <input type="text" name="bo_order[<?php echo $i ?>]" value="<?php echo $row['bo_order'?>" id="bo_order_<?php echo $i ?>" class="frm_input" size="2">
        </td>
        <td class="td_mngsmall">
            <label for="bo_device_<?php echo $i?>" class="sound_only">접속기기</label>
            <select name="bo_device[<?php echo $i ?>]" id="bo_device_<?php echo $i ?>">
                <option value="both"<?php echo get_selected($row['bo_device'], 'both'true); ?>>모두</option>
                <option value="pc"<?php echo get_selected($row['bo_device'], 'pc'); ?>>PC</option>
                <option value="mobile"<?php echo get_selected($row['bo_device'], 'mobile'); ?>>모바일</option>
            </select>
        </td>
        <td class="td_mngsmall">
            <?php echo $one_update ?>
            <?php echo $one_copy ?>
        </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="act_button" value="선택수정" onclick="document.pressed=this.value">
    <?php if ($is_admin == 'super') { ?>
    <input type="submit" name="act_button" value="선택삭제" onclick="document.pressed=this.value">
    <?php ?>
</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;page='); ?>

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

    if(document.pressed == "선택삭제") {
        if(!confirm("선택한 자료를 정말 삭제하시겠습니까?")) {
            return false;
        }
    }

    return true;
}

$(function(){
    $(".board_copy").click(function(){
        window.open(this.href, "win_board_copy", "left=100,top=100,width=550,height=450");
        return false;
    });
});
</script>

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