[G5] 글목록이 본문처럼 보이기 > 기술자료 | 해피정닷컴

[G5] 글목록이 본문처럼 보이기 > 기술자료

본문 바로가기

사이트 내 전체검색

[G5] 글목록이 본문처럼 보이기 > 기술자료

그누보드 [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 } ?>
<!-- } 게시판 목록 끝 -->
 

댓글목록

등록된 댓글이 없습니다.


Total 459건 9 페이지
  • RSS
기술자료 목록
299
그누보드   10121  2017-06-29 18:46  
298
그누보드   12437  2017-06-15 11:52 ~ 2021-07-08 07:58  
297
그누보드   15364  2017-06-09 17:39  
296
그누보드   14778  2017-06-02 00:55 ~ 2018-07-06 11:36  
295
그누보드   12813  2017-05-30 03:39  
294
그누보드   15986  2017-05-29 23:19 ~ 2019-08-12 11:18  
293
그누보드   15469  2017-05-29 18:49 ~ 2017-11-10 06:17  
292
그누보드   13452  2017-05-22 11:45 ~ 2017-09-15 00:00  
291
그누보드   10891  2017-05-18 14:44  
290
그누보드   17915  2017-05-07 13:20 ~ 2018-04-09 23:57  
289
그누보드   10245  2017-05-04 13:00 ~ 2017-05-23 00:00  
288
그누보드   11843  2017-04-26 11:48  
287
그누보드   17274  2017-04-24 12:53 ~ 2017-11-13 15:00  
열람
그누보드   16618  2017-04-19 17:36 ~ 2017-07-20 00:00  
285
그누보드   16167  2017-04-13 13:43 ~ 2017-12-06 07:23  
284
그누보드   12147  2017-04-11 13:10 ~ 2018-07-17 01:49  
283
그누보드   14116  2017-03-29 07:06 ~ 2019-08-18 12:48  
282
그누보드   47037  2017-03-18 13:21 ~ 2017-03-19 00:00  
281
그누보드   34276  2017-03-16 19:09 ~ 2017-04-28 00:00  
280
그누보드   12014  2017-03-14 01:20  

검색

해피정닷컴 정보

회사소개 회사연혁 협력사 오시는길 서비스 이용약관 개인정보 처리방침

회사명: 해피정닷컴   대표: 정창용   전화: 070-7600-3500   팩스: 042-670-8272
주소: (34368) 대전시 대덕구 대화로 160 대전산업용재유통단지 1동 222호
개인정보보호책임자: 정창용   사업자번호: 119-05-36414
통신판매업신고: 제2024-대전대덕-0405호 [사업자등록확인]  
Copyright 2001~2024 해피정닷컴. All Rights Reserved.