be18d4ede29adb24e78aafc279f46067c5d0f0ad.svn-base
4.43 KB
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
<? include $_SERVER["DOCUMENT_ROOT"] . "/admin/inc/php/header.php" ?>
<? include $_SERVER["DOCUMENT_ROOT"] . "/admin/inc/php/left_etcManage.php" ?>
<? include $_SERVER["DOCUMENT_ROOT"] . "/common/classes/EtcAdmin.php" ?>
<?
$obj = new EtcAdmin($_REQUEST, "");
$noticeType = $_REQUEST["notice_type"];
$noticeList = $obj->getListOfNotice();
$vnum = $obj->virtualNum;
if($noticeType == "1")
{
$title = "공지사항 관리";
}
else
{
$title = "FAQ 관리";
}
?>
<script type="text/javascript">
$(document).ready(function(){
var noticeType = "<?=$noticeType?>";
//=====프레입웤 변수들==================================================================================//
var FORM_TARGET_CLS_NM = "div.data" ; // 폼을 동적 wrap 할 타겟 ID이름
var FORM_NAME = "nf" ; // 폼이름
var FORM_METHOD = "POST" ; // 폼 메쏘드
var FORM_USE_FILE = false ; // 파일폼 사용 여부
var FORM_ACTION = _documentUrl ;
var NEXT_CMD = "" ; // 다은 수행 할 cmd
//=====================================================================================================//
var jForm = $(FORM_TARGET_CLS_NM).mf({ "name" : FORM_NAME , "method" : FORM_METHOD , "action" : FORM_ACTION , "useFile" : FORM_USE_FILE }) ;
var dates = $('#birth_dt').datepicker({
showMonthAfterYear:true,
inline: true,
changeMonth: true,
changeYear: true,
dateFormat : 'yy-mm-dd',
dayNamesMin:['일', '월', '화', '수', '목', '금', ' 토'],
monthNames:['1월','2월','3월','4월','5월','6월','7 월','8월','9월','10월','11월','12월'],
monthNamesShort:['1월','2월','3월','4월','5월','6월','7월','8월','9월','10월','11월','12월'],
showButtonPanel: true, currentText: '오늘 ' , closeText: '닫기',
onSelect: function(selectedDate) {
}
});
// 페이징
$(".jPage").click2(function(){
jForm.ci() ;
jForm.mi("page", $(this).attr("page")) ;
jForm.submit() ;
}) ;
$(".jRegNotice").click2(function(){
location.href = "/admin/etcManage/noticeView.php?notice_type=" + noticeType + "&rurl=" + jQuery.rich.bin2hex(_documentUrl);
});
$(".jDelNotice").click2(function(){
var noticeNo = $(this).attr("notice_no");
if(confirm("해당 게시물을 삭제하시겠습니까?"))
{
jForm.ci() ;
jForm.attr("action", "/action_front.php") ;
jForm.mi("cmd", "EtcAdmin.delNotice") ;
jForm.mi("notice_no", noticeNo);
jForm.mi("flow", "ToS") ;
jForm.mi("msg", "삭제되었습니다.") ;
jForm.mei("rurl", _documentUrl) ;
jForm.submit() ;
}
});
$(".jNoticeView").click2(function(){
var noticeNo = $(this).attr("notice_no");
location.href = "/admin/etcManage/noticeView.php?notice_no=" + noticeNo + "¬ice_type=" + noticeType + "&rurl=" + jQuery.rich.bin2hex(_documentUrl);
});
});
</script>
<div id="Contents" class="notice">
<h1><?=$title?></h1>
<!-- location area -->
<h2>
서비스 관리 > 게시물 관리 > <span><?=$title?></span>
</h2>
<!-- location area -->
<div class="data">
<div class="btngroupright">
<input type="button" class="button searchsmall white jRegNotice" value="글쓰기" />
</div>
<table class="datacList">
<thead>
<tr>
<th class="no">No</th>
<th>등록일시</th>
<th>제목</th>
<th>삭제</th>
</tr>
</thead>
<tbody><!-- 10줄 리스트// 마지막 tr에 class="last" 넣어주세요 -->
<?for($i=0; $i<sizeof($noticeList); $i++){?>
<tr class="<?=(sizeof($noticeList)-1 == $i) ? "last" : "datacLists"?>">
<td class="no center">
<?=$vnum--?>
<input type="hidden" name="notice_no[]" value="<?=$noticeList[$i]["notice_no"]?>"/>
</td>
<td class="center"><?=$noticeList[$i]["regist_dt"]?></td>
<td class="center"><a href="#" class="jNoticeView" notice_no="<?=$noticeList[$i]["notice_no"]?>" ><?=$noticeList[$i]["title"]?></a></td>
<td class="center">
<input type="button" class="button searchsmall sky jDelNotice" notice_no="<?=$noticeList[$i]["notice_no"]?>" value="삭제" />
</td>
</tr>
<?}?>
<?if(sizeof($noticeList) == 0){?>
<tr class="last">
<td class="no center" colspan="5">No Data</td>
</tr>
<?}?>
</tbody>
</table>
<!-- //bbsList -->
<!-- Pagination -->
<? include $_SERVER["DOCUMENT_ROOT"] . "/admin/inc/php/pageNavigation.php" ?>
<!--//Pagination -->
</div>
</div>
<? include $_SERVER["DOCUMENT_ROOT"] . "/admin/inc/php/footer.php" ?>