188 lines
7.8 KiB
PHP
188 lines
7.8 KiB
PHP
<?php
|
|
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
|
|
|
// 선택옵션으로 인해 셀합치기가 가변적으로 변함
|
|
$colspan = 6;
|
|
|
|
if ($is_checkbox) $colspan++;
|
|
|
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
|
add_stylesheet('<link rel="stylesheet" href="'.$qa_skin_url.'/style.css">', 0);
|
|
?>
|
|
|
|
<div id="bo_list">
|
|
<?php if ($category_option) { ?>
|
|
<!-- 카테고리 시작 { -->
|
|
<nav id="bo_cate">
|
|
<h2><?php echo $qaconfig['qa_title'] ?> 카테고리</h2>
|
|
<ul id="bo_cate_ul">
|
|
<?php echo $category_option ?>
|
|
</ul>
|
|
</nav>
|
|
<!-- } 카테고리 끝 -->
|
|
<?php } ?>
|
|
|
|
<!-- 게시판 페이지 정보 및 버튼 시작 { -->
|
|
<div id="bo_btn_top">
|
|
<div id="bo_list_total">
|
|
<span>Total <?php echo number_format($total_count) ?>건</span>
|
|
<?php echo $page ?> 페이지
|
|
</div>
|
|
|
|
<?php if ($admin_href || $write_href) { ?>
|
|
<ul class="btn_bo_user">
|
|
<?php if ($admin_href) { ?><li><a href="<?php echo $admin_href ?>" class="btn_admin btn" title="관리자"><i class="fa fa-cog fa-spin fa-fw"></i><span class="sound_only">관리자</span></a></li><?php } ?>
|
|
<li>
|
|
<button type="button" class="btn_bo_sch btn_b01 btn" title="게시판 검색"><i class="fa fa-search" aria-hidden="true"></i><span class="sound_only">게시판 검색</span></button>
|
|
<!-- 게시판 검색 시작 { -->
|
|
<div class="bo_sch_wrap">
|
|
<fieldset class="bo_sch">
|
|
<h3>검색</h3>
|
|
<legend>게시물 검색</legend>
|
|
<form name="fsearch" method="get">
|
|
<input type="hidden" name="sca" value="<?php echo $sca ?>">
|
|
<label for="stx" class="sound_only">검색어<strong class="sound_only"> 필수</strong></label>
|
|
<div class="sch_bar">
|
|
<input type="text" name="stx" value="<?php echo stripslashes($stx); ?>" id="stx" required class="sch_input" size="25" maxlength="15" placeholder=" 검색어를 입력해주세요">
|
|
<button type="submit" value="검색" class="sch_btn" title="검색"><i class="fa fa-search" aria-hidden="true"></i><span class="sound_only">검색</span></button>
|
|
</div>
|
|
<button type="button" class="bo_sch_cls"><i class="fa fa-times" aria-hidden="true"></i><span class="sound_only">닫기</span></button>
|
|
</form>
|
|
</fieldset>
|
|
<div class="bo_sch_bg"></div>
|
|
</div>
|
|
<script>
|
|
// 게시판 검색
|
|
$(".btn_bo_sch").on("click", function() {
|
|
$(".bo_sch_wrap").toggle();
|
|
})
|
|
$('.bo_sch_bg, .bo_sch_cls').click(function(){
|
|
$('.bo_sch_wrap').hide();
|
|
});
|
|
</script>
|
|
<!-- } 게시판 검색 끝 -->
|
|
</li>
|
|
<?php if ($write_href) { ?><li><a href="<?php echo $write_href ?>" class="btn_b01 btn" title="문의등록"><i class="fa fa-pencil" aria-hidden="true"></i><span class="sound_only">문의등록</span></a></li><?php } ?>
|
|
</ul>
|
|
<?php } ?>
|
|
</div>
|
|
<!-- } 게시판 페이지 정보 및 버튼 끝 -->
|
|
|
|
<form name="fqalist" id="fqalist" action="./qadelete.php" onsubmit="return fqalist_submit(this);" method="post">
|
|
<input type="hidden" name="stx" value="<?php echo $stx; ?>">
|
|
<input type="hidden" name="sca" value="<?php echo $sca; ?>">
|
|
<input type="hidden" name="page" value="<?php echo $page; ?>">
|
|
|
|
<div class="tbl_head01 tbl_wrap">
|
|
<table>
|
|
<caption><?php echo $board['bo_subject'] ?> 목록</caption>
|
|
<thead>
|
|
<tr>
|
|
<?php if ($is_checkbox) { ?>
|
|
<th scope="col" class="all_chk chk_box">
|
|
<input type="checkbox" id="chkall" onclick="if (this.checked) all_checked(true); else all_checked(false);" class="selec_chk">
|
|
<label for="chkall">
|
|
<span></span>
|
|
<b class="sound_only">현재 페이지 게시물 전체선택</b>
|
|
</label>
|
|
</th>
|
|
<?php } ?>
|
|
<th scope="col">번호</th>
|
|
<th scope="col">제목</th>
|
|
<th scope="col">글쓴이</th>
|
|
<th scope="col">등록일</th>
|
|
<th scope="col">상태</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php
|
|
for ($i=0; $i<count($list); $i++) {
|
|
if ($i%2==0) $lt_class = "even";
|
|
else $lt_class = "";
|
|
?>
|
|
<tr class="<?php echo $lt_class ?>">
|
|
<?php if ($is_checkbox) { ?>
|
|
<td class="td_chk chk_box">
|
|
<input type="checkbox" name="chk_qa_id[]" value="<?php echo $list[$i]['qa_id'] ?>" id="chk_qa_id_<?php echo $i ?>" class="selec_chk">
|
|
<label for="chk_qa_id_<?php echo $i ?>">
|
|
<span></span>
|
|
<b class="sound_only"><?php echo $list[$i]['subject'] ?></b>
|
|
</label>
|
|
</td>
|
|
<?php } ?>
|
|
<td class="td_num"><?php echo $list[$i]['num']; ?></td>
|
|
<td class="td_subject">
|
|
<span class="bo_cate_link"><?php echo $list[$i]['category']; ?></span>
|
|
<a href="<?php echo $list[$i]['view_href']; ?>" class="bo_tit">
|
|
<?php echo $list[$i]['subject']; ?>
|
|
<?php if ($list[$i]['icon_file']) echo " <i class=\"fa fa-download\" aria-hidden=\"true\"></i>" ; ?>
|
|
</a>
|
|
</td>
|
|
<td class="td_name"><?php echo $list[$i]['name']; ?></td>
|
|
<td class="td_date"><?php echo $list[$i]['date']; ?></td>
|
|
<td class="td_stat"><span class=" <?php echo ($list[$i]['qa_status'] ? 'txt_done' : 'txt_rdy'); ?>"><?php echo ($list[$i]['qa_status'] ? '답변완료' : '답변대기'); ?></span></td>
|
|
</tr>
|
|
<?php
|
|
}
|
|
?>
|
|
|
|
<?php if ($i == 0) { echo '<tr><td colspan="'.$colspan.'" class="empty_table">게시물이 없습니다.</td></tr>'; } ?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<!-- 페이지 -->
|
|
<?php echo $list_pages; ?>
|
|
<!-- 페이지 -->
|
|
|
|
<div class="bo_fx">
|
|
<ul class="btn_bo_user">
|
|
<?php if ($is_checkbox) { ?>
|
|
<li><button type="submit" name="btn_submit" value="선택삭제" title="선택삭제" onclick="document.pressed=this.value" class="btn btn_b01 btn_admin"><i class="fa fa-trash-o" aria-hidden="true"></i><span class="sound_only">선택삭제</span></button></li>
|
|
<?php } ?>
|
|
<?php if ($list_href) { ?><li><a href="<?php echo $list_href ?>" class="btn_b01 btn" title="목록"><i class="fa fa-list" aria-hidden="true"></i><span class="sound_only">목록</span></a></li><?php } ?>
|
|
<?php if ($write_href) { ?><li><a href="<?php echo $write_href ?>" class="btn_b01 btn" title="문의등록"><i class="fa fa-pencil" aria-hidden="true"></i><span class="sound_only">문의등록</span></a></li><?php } ?>
|
|
</ul>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
|
|
<?php if($is_checkbox) { ?>
|
|
<noscript>
|
|
<p>자바스크립트를 사용하지 않는 경우<br>별도의 확인 절차 없이 바로 선택삭제 처리하므로 주의하시기 바랍니다.</p>
|
|
</noscript>
|
|
<?php } ?>
|
|
|
|
<?php if ($is_checkbox) { ?>
|
|
<script>
|
|
function all_checked(sw) {
|
|
var f = document.fqalist;
|
|
|
|
for (var i=0; i<f.length; i++) {
|
|
if (f.elements[i].name == "chk_qa_id[]")
|
|
f.elements[i].checked = sw;
|
|
}
|
|
}
|
|
|
|
function fqalist_submit(f) {
|
|
var chk_count = 0;
|
|
|
|
for (var i=0; i<f.length; i++) {
|
|
if (f.elements[i].name == "chk_qa_id[]" && f.elements[i].checked)
|
|
chk_count++;
|
|
}
|
|
|
|
if (!chk_count) {
|
|
alert(document.pressed + "할 게시물을 하나 이상 선택하세요.");
|
|
return false;
|
|
}
|
|
|
|
if(document.pressed == "선택삭제") {
|
|
if (!confirm("선택한 게시물을 정말 삭제하시겠습니까?\n\n한번 삭제한 자료는 복구할 수 없습니다"))
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
</script>
|
|
<?php } ?>
|
|
<!-- } 게시판 목록 끝 -->
|