그누보드 [G5] 글목록이 본문처럼 보이기
페이지 정보
본문
2017-07-10 첨부파일 호출 오류 수정
2017-07-20 첨부파일 확장자 호출 문법 수정
게시판에 접속하면 목록이 본문 형식으로 보이는 방법입니다.
게시판이지만 오직 한개의 마지막 게시글만 보입니다.
게시판설정
. 전체목록보이기 사용 : 체크 안함
. 페이지당 목록 수 : 1 로 변경
그누보드5 / skin / board / 폴더 / list.skin.php 내용을 변경
<?php
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
// 선택옵션으로 인해 셀합치기가 가변적으로 변함
$colspan = 5;
if ($is_checkbox) $colspan++;
if ($is_good) $colspan++;
if ($is_nogood) $colspan++;
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
add_stylesheet('<link rel="stylesheet" href="'.$board_skin_url.'/style.css">', 0);
?>
<!-- 게시판 목록 시작 { -->
<div id="bo_list" style="width:<?php echo $width; ?>">
<?php if ($is_checkbox) { ?>
<!-- 게시판 페이지 정보 및 버튼 시작 { -->
<div class="bo_fx">
<div id="bo_list_total">
<span>Total <?php echo number_format($total_count) ?>건</span>
<?php echo $page ?> 페이지
</div>
<?php if ($rss_href || $write_href) { ?>
<ul class="btn_bo_user">
<?php if ($rss_href) { ?><li><a href="<?php echo $rss_href ?>" class="btn_b01">RSS</a></li><?php } ?>
<?php if ($admin_href) { ?><li><a href="<?php echo $admin_href ?>" class="btn_admin">관리자</a></li><?php } ?>
<?php if ($write_href) { ?><li><a href="<?php echo $write_href ?>" class="btn_b02">글쓰기</a></li><?php } ?>
</ul>
<?php } ?>
</div>
<!-- } 게시판 페이지 정보 및 버튼 끝 -->
<?php } ?>
<form name="fboardlist" id="fboardlist" action="./board_list_update.php" onsubmit="return fboardlist_submit(this);" method="post">
<input type="hidden" name="bo_table" value="<?php echo $bo_table ?>">
<input type="hidden" name="sfl" value="<?php echo $sfl ?>">
<input type="hidden" name="stx" value="<?php echo $stx ?>">
<input type="hidden" name="spt" value="<?php echo $spt ?>">
<input type="hidden" name="sca" value="<?php echo $sca ?>">
<input type="hidden" name="sst" value="<?php echo $sst ?>">
<input type="hidden" name="sod" value="<?php echo $sod ?>">
<input type="hidden" name="page" value="<?php echo $page ?>">
<input type="hidden" name="sw" value="">
<div class="tbl_head01 tbl_wrap">
<?php
for ($i=0; $i<count($list); $i++) {
$sql_file = "select * from ".$g5["board_file_table"]." where bo_table='".$bo_table."' and wr_id='".$list[$i]["wr_id"]."' and bf_type between '1' and '3' order by bf_no asc ";
$row_file = sql_fetch($sql_file);
//echo $sql_file;
// 이미지 출력
$v_img_count = count($row_file['bf_file']);
if($v_img_count) {
echo '<div class="view-img">'.PHP_EOL;
//for ($i=0; $i<=count($row_file[$i]['bf_file']); $i++) {
//if ($row_file[$i]['bf_file']) {
echo "<img src='".G5_DATA_URL."/file/".$bo_table."/".get_view_thumbnail($row_file['bf_file']) ."'>";
//}
//}
echo '</div>'.PHP_EOL;
}
$content = cut_str(get_text($list[$i]["wr_content"]), 80);
$href = G5_BBS_URL."/link.php?bo_table=$bo_table&wr_id={$list[$i][wr_id]}&no=1";
if ($list[$i]["comment_cnt"])
$comm_cnt="<a href=".$list[$i]["comment_href"]."><span class=cmt>".$list[$i]["comment_cnt"]."</span></a>";
//$ca_wr10_href = G5_BBS_URL."/board.php?bo_table=".$board["bo_table"]."&sca=&sfl=wr_10&stx=".urlencode($list[$i]["wr_10"]);
?>
<?php echo $list[$i]["wr_content"]; ?>
<?php if ($is_checkbox) { ?>
<br />
<label for="chk_wr_id_<?php echo $i ?>" class="sound_only"><?php echo $list[$i]['subject'] ?></label>
<input type="checkbox" name="chk_wr_id[]" value="<?php echo $list[$i]['wr_id'] ?>" id="chk_wr_id_<?php echo $i ?>">
<a href="<?php echo $list[$i]["href"];?>" class="btn_b02">수정</a>
<?php } ?>
<?php } ?>
</div>
<?php if ($is_checkbox) { ?>
<div class="bo_fx">
<ul class="btn_bo_adm">
<li><input type="submit" name="btn_submit" value="선택삭제" onclick="document.pressed=this.value"></li>
<li><input type="submit" name="btn_submit" value="선택복사" onclick="document.pressed=this.value"></li>
<li><input type="submit" name="btn_submit" value="선택이동" onclick="document.pressed=this.value"></li>
</ul>
<ul class="btn_bo_user">
<?php if ($list_href) { ?><li><a href="<?php echo $list_href ?>" class="btn_b01">목록</a></li><?php } ?>
<?php if ($write_href) { ?><li><a href="<?php echo $write_href ?>" class="btn_b02">글쓰기</a></li><?php } ?>
</ul>
</div>
<?php } ?>
</form>
</div>
<?php if($is_checkbox) { ?>
<noscript>
<p>자바스크립트를 사용하지 않는 경우<br>별도의 확인 절차 없이 바로 선택삭제 처리하므로 주의하시기 바랍니다.</p>
</noscript>
<!-- 페이지 -->
<?php echo $write_pages; ?>
<script>
function all_checked(sw) {
var f = document.fboardlist;
for (var i=0; i<f.length; i++) {
if (f.elements[i].name == "chk_wr_id[]")
f.elements[i].checked = sw;
}
}
function fboardlist_submit(f) {
var chk_count = 0;
for (var i=0; i<f.length; i++) {
if (f.elements[i].name == "chk_wr_id[]" && f.elements[i].checked)
chk_count++;
}
if (!chk_count) {
alert(document.pressed + "할 게시물을 하나 이상 선택하세요.");
return false;
}
if(document.pressed == "선택복사") {
select_copy("copy");
return;
}
if(document.pressed == "선택이동") {
select_copy("move");
return;
}
if(document.pressed == "선택삭제") {
if (!confirm("선택한 게시물을 정말 삭제하시겠습니까?\n\n한번 삭제한 자료는 복구할 수 없습니다\n\n답변글이 있는 게시글을 선택하신 경우\n답변글도 선택하셔야 게시글이 삭제됩니다."))
return false;
f.removeAttribute("target");
f.action = "./board_list_update.php";
}
return true;
}
// 선택한 게시물 복사 및 이동
function select_copy(sw) {
var f = document.fboardlist;
if (sw == "copy")
str = "복사";
else
str = "이동";
var sub_win = window.open("", "move", "left=50, top=50, width=500, height=550, scrollbars=1");
f.sw.value = sw;
f.target = "move";
f.action = "./move.php";
f.submit();
}
</script>
<?php } ?>
<!-- } 게시판 목록 끝 -->
2017-07-20 첨부파일 확장자 호출 문법 수정
게시판에 접속하면 목록이 본문 형식으로 보이는 방법입니다.
게시판이지만 오직 한개의 마지막 게시글만 보입니다.
게시판설정
. 전체목록보이기 사용 : 체크 안함
. 페이지당 목록 수 : 1 로 변경
그누보드5 / skin / board / 폴더 / list.skin.php 내용을 변경
<?php
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
// 선택옵션으로 인해 셀합치기가 가변적으로 변함
$colspan = 5;
if ($is_checkbox) $colspan++;
if ($is_good) $colspan++;
if ($is_nogood) $colspan++;
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
add_stylesheet('<link rel="stylesheet" href="'.$board_skin_url.'/style.css">', 0);
?>
<!-- 게시판 목록 시작 { -->
<div id="bo_list" style="width:<?php echo $width; ?>">
<?php if ($is_checkbox) { ?>
<!-- 게시판 페이지 정보 및 버튼 시작 { -->
<div class="bo_fx">
<div id="bo_list_total">
<span>Total <?php echo number_format($total_count) ?>건</span>
<?php echo $page ?> 페이지
</div>
<?php if ($rss_href || $write_href) { ?>
<ul class="btn_bo_user">
<?php if ($rss_href) { ?><li><a href="<?php echo $rss_href ?>" class="btn_b01">RSS</a></li><?php } ?>
<?php if ($admin_href) { ?><li><a href="<?php echo $admin_href ?>" class="btn_admin">관리자</a></li><?php } ?>
<?php if ($write_href) { ?><li><a href="<?php echo $write_href ?>" class="btn_b02">글쓰기</a></li><?php } ?>
</ul>
<?php } ?>
</div>
<!-- } 게시판 페이지 정보 및 버튼 끝 -->
<?php } ?>
<form name="fboardlist" id="fboardlist" action="./board_list_update.php" onsubmit="return fboardlist_submit(this);" method="post">
<input type="hidden" name="bo_table" value="<?php echo $bo_table ?>">
<input type="hidden" name="sfl" value="<?php echo $sfl ?>">
<input type="hidden" name="stx" value="<?php echo $stx ?>">
<input type="hidden" name="spt" value="<?php echo $spt ?>">
<input type="hidden" name="sca" value="<?php echo $sca ?>">
<input type="hidden" name="sst" value="<?php echo $sst ?>">
<input type="hidden" name="sod" value="<?php echo $sod ?>">
<input type="hidden" name="page" value="<?php echo $page ?>">
<input type="hidden" name="sw" value="">
<div class="tbl_head01 tbl_wrap">
<?php
for ($i=0; $i<count($list); $i++) {
$sql_file = "select * from ".$g5["board_file_table"]." where bo_table='".$bo_table."' and wr_id='".$list[$i]["wr_id"]."' and bf_type between '1' and '3' order by bf_no asc ";
$row_file = sql_fetch($sql_file);
//echo $sql_file;
// 이미지 출력
$v_img_count = count($row_file['bf_file']);
if($v_img_count) {
echo '<div class="view-img">'.PHP_EOL;
//for ($i=0; $i<=count($row_file[$i]['bf_file']); $i++) {
//if ($row_file[$i]['bf_file']) {
echo "<img src='".G5_DATA_URL."/file/".$bo_table."/".get_view_thumbnail($row_file['bf_file']) ."'>";
//}
//}
echo '</div>'.PHP_EOL;
}
$content = cut_str(get_text($list[$i]["wr_content"]), 80);
$href = G5_BBS_URL."/link.php?bo_table=$bo_table&wr_id={$list[$i][wr_id]}&no=1";
if ($list[$i]["comment_cnt"])
$comm_cnt="<a href=".$list[$i]["comment_href"]."><span class=cmt>".$list[$i]["comment_cnt"]."</span></a>";
//$ca_wr10_href = G5_BBS_URL."/board.php?bo_table=".$board["bo_table"]."&sca=&sfl=wr_10&stx=".urlencode($list[$i]["wr_10"]);
?>
<?php echo $list[$i]["wr_content"]; ?>
<?php if ($is_checkbox) { ?>
<br />
<label for="chk_wr_id_<?php echo $i ?>" class="sound_only"><?php echo $list[$i]['subject'] ?></label>
<input type="checkbox" name="chk_wr_id[]" value="<?php echo $list[$i]['wr_id'] ?>" id="chk_wr_id_<?php echo $i ?>">
<a href="<?php echo $list[$i]["href"];?>" class="btn_b02">수정</a>
<?php } ?>
<?php } ?>
</div>
<?php if ($is_checkbox) { ?>
<div class="bo_fx">
<ul class="btn_bo_adm">
<li><input type="submit" name="btn_submit" value="선택삭제" onclick="document.pressed=this.value"></li>
<li><input type="submit" name="btn_submit" value="선택복사" onclick="document.pressed=this.value"></li>
<li><input type="submit" name="btn_submit" value="선택이동" onclick="document.pressed=this.value"></li>
</ul>
<ul class="btn_bo_user">
<?php if ($list_href) { ?><li><a href="<?php echo $list_href ?>" class="btn_b01">목록</a></li><?php } ?>
<?php if ($write_href) { ?><li><a href="<?php echo $write_href ?>" class="btn_b02">글쓰기</a></li><?php } ?>
</ul>
</div>
<?php } ?>
</form>
</div>
<?php if($is_checkbox) { ?>
<noscript>
<p>자바스크립트를 사용하지 않는 경우<br>별도의 확인 절차 없이 바로 선택삭제 처리하므로 주의하시기 바랍니다.</p>
</noscript>
<!-- 페이지 -->
<?php echo $write_pages; ?>
<script>
function all_checked(sw) {
var f = document.fboardlist;
for (var i=0; i<f.length; i++) {
if (f.elements[i].name == "chk_wr_id[]")
f.elements[i].checked = sw;
}
}
function fboardlist_submit(f) {
var chk_count = 0;
for (var i=0; i<f.length; i++) {
if (f.elements[i].name == "chk_wr_id[]" && f.elements[i].checked)
chk_count++;
}
if (!chk_count) {
alert(document.pressed + "할 게시물을 하나 이상 선택하세요.");
return false;
}
if(document.pressed == "선택복사") {
select_copy("copy");
return;
}
if(document.pressed == "선택이동") {
select_copy("move");
return;
}
if(document.pressed == "선택삭제") {
if (!confirm("선택한 게시물을 정말 삭제하시겠습니까?\n\n한번 삭제한 자료는 복구할 수 없습니다\n\n답변글이 있는 게시글을 선택하신 경우\n답변글도 선택하셔야 게시글이 삭제됩니다."))
return false;
f.removeAttribute("target");
f.action = "./board_list_update.php";
}
return true;
}
// 선택한 게시물 복사 및 이동
function select_copy(sw) {
var f = document.fboardlist;
if (sw == "copy")
str = "복사";
else
str = "이동";
var sub_win = window.open("", "move", "left=50, top=50, width=500, height=550, scrollbars=1");
f.sw.value = sw;
f.target = "move";
f.action = "./move.php";
f.submit();
}
</script>
<?php } ?>
<!-- } 게시판 목록 끝 -->
댓글목록
등록된 댓글이 없습니다.