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
|
<?php include_once('./_common.php');
if ($is_admin != 'super') die('최고관리자만 접근 가능합니다.');
switch($type) { case 'group': $sql = " select gr_id as id, gr_subject as subject from {$g5['group_table']} order by gr_order, gr_id "; break; case 'board': $sql = " select bo_table as id, bo_subject as subject from {$g5['board_table']} order by bo_order, bo_table "; break; case 'content': $sql = " select co_id as id, co_subject as subject from {$g5['content_table']} order by co_id "; break; default: $sql = ''; break; } ?>
<?php if($sql) { $result = sql_query($sql);
for($i=0; $row=sql_fetch_array($result); $i++) { if($i == 0) { ?>
<div class="tbl_head01 tbl_wrap"> <table> <thead> <tr> <th scope="col">제목</th> <th scope="col">선택</th> </tr> </thead> <tbody>
<?php } switch($type) { case 'group': $link = G5_BBS_URL.'/group.php?gr_id='.$row['id']; break; case 'board': $link = G5_BBS_URL.'/board.php?bo_table='.$row['id']; break; case 'content': $link = G5_BBS_URL.'/content.php?co_id='.$row['id']; break; default: $link = ''; break; } ?>
<tr> <td><?php echo $row['subject']; ?></td> <td class="td_mngsmall"> <input type="hidden" name="subject[]" value="<?php echo preg_replace('/[\'\"]/', '', $row['subject']); ?>"> <input type="hidden" name="link[]" value="<?php echo $link; ?>"> <button type="button" class="add_select"><span class="sound_only"><?php echo $row['subject']; ?> </span>선택</button> </td> </tr>
<?php } ?>
</tbody> </table> </div>
<div class="btn_win02 btn_win"> <button type="button" class="btn_cancel" onclick="window.close();">창닫기</button> </div>
<?php } else { ?>
<div class="tbl_frm01 tbl_wrap"> <table> <colgroup> <col class="grid_2"> <col> </colgroup> <tbody> <tr> <th scope="row"><label for="me_name">메뉴<strong class="sound_only"> 필수</strong></label></th> <td><input type="text" name="me_name" id="me_name" required class="frm_input required"></td> </tr> <tr> <th scope="row"><label for="me_link">링크<strong class="sound_only"> 필수</strong></label></th> <td> <?php echo help('링크는 http://를 포함해서 입력해 주세요.'); ?> <input type="text" name="me_link" id="me_link" required class="frm_input full_input required"> </td> </tr> </tbody> </table> </div>
<div class="btn_win02 btn_win"> <button type="button" id="add_manual" class="btn_submit">추가</button> <button type="button" class="btn_cancel" onclick="window.close();">창닫기</button> </div> <?php } ?>
|