[G5] 댓글(코멘트) 페이징 > 기술자료 | 해피정닷컴

[G5] 댓글(코멘트) 페이징 > 기술자료

본문 바로가기

사이트 내 전체검색

[G5] 댓글(코멘트) 페이징 > 기술자료

그누보드 [G5] 댓글(코멘트) 페이징

페이지 정보


본문

댓글에 독립적인 페이징을 넣어서 댓글이 다수 등록된 경우 이용에 편리성을 제공합니다.


1. 그누보드5 / lib / common.lib.php   아래 내용 추가

// 코멘트 페이징을 위해 추가
function get_comment_paging($write_pages, $cur_page, $total_page, $url, $add="") 

    //$url = preg_replace('#&page=[0-9]*(&page=)$#', '$1', $url); 
    $url = preg_replace('#&page=[0-9]*#', '', $url) . ''; 

    $str = ''; 
    if ($cur_page > 1) { 
        $str .= '<a href="'.$url.'1'.$add.'#CommentTop" class="pg_page pg_start">처음</a>'.PHP_EOL; 
    } 

    $start_page = ( ( (int)( ($cur_page - 1 ) / $write_pages ) ) * $write_pages ) + 1; 
    $end_page = $start_page + $write_pages - 1; 

    if ($end_page >= $total_page) $end_page = $total_page; 

    if ($start_page > 1) $str .= '<a href="'.$url.($start_page-1).$add.'#CommentTop" class="pg_page pg_prev">이전</a>'.PHP_EOL; 

    if ($total_page > 1) { 
        for ($k=$start_page;$k<=$end_page;$k++) { 
            if ($cur_page != $k) 
                $str .= '<a href="'.$url.$k.$add.'#CommentTop" class="pg_page">'.$k.'<span class="sound_only">페이지</span></a>'.PHP_EOL; 
            else 
                $str .= '<span class="sound_only">열린</span><strong class="pg_current">'.$k.'</strong><span class="sound_only">페이지</span>'.PHP_EOL; 
        } 
    } 

    if ($total_page > $end_page) $str .= '<a href="'.$url.($end_page+1).$add.'#CommentTop" class="pg_page pg_next">다음</a>'.PHP_EOL; 

    if ($cur_page < $total_page) { 
        $str .= '<a href="'.$url.$total_page.$add.'#CommentTop" class="pg_page pg_end">맨끝</a>'.PHP_EOL; 
    } 

    if ($str) 
        return "<nav class=\"pg_wrap\"><span class=\"pg\">{$str}</span></nav>"; 
    else 
        return ""; 
}



2-1. 그누보드5 / skin / board / basic / view_comment.skin.php

<!-- 댓글 시작 { -->
<section id="bo_vc">
    <h2>댓글목록</h2>
    <?php
    $cmt_amt = count($list);
    for ($i=0; $i<$cmt_amt; $i++) {

를 아래와 같이 변경

<!-- 댓글 시작 { -->
<div id="CommentTop"></div>
<section id="bo_vc">
    <h2>댓글목록</h2>
    <?php
    if(!$c_rows) $c_rows = 10;  // 표시댓글수가 지정되지 않았을경우 기본값 20
    /* ?>
    <div>
        <div style="text-align:right;">
            <form method="post" action="<?php echo G5_BBS_URL; ?>/board.php?bo_table=<?php echo $bo_table; ?>&wr_id=<?php echo $wr_id; ?>">
                표시댓글수<input type="number" value="<?php echo $c_rows; ?>" name="c_rows" style="width:50px;">
                <input type="submit" value="설정">
            </form>
        </div>
    </div>
    <?php
    */
    // 코멘트 번호 계산식 및 페이징 표시
    $c_total_count = count($list); // 전체 코멘트 수 할당  // 보여줄 개수
    if ($c_total_count != 0) {
        $c_total_page  = ceil($c_total_count / $c_rows);  // 전체 페이지 계산
        if (!$c_page) $c_page = $c_total_page; // 페이지가 없으면 첫 페이지 (1 페이지)
        $c_from_record = ($c_page - 1) * $c_rows; // 시작 코멘트 구하기
        $c_last_record = $c_from_record + $c_rows; // 끝 코멘트 구하기
        if($c_last_record > $c_total_count) { // 마지막 코멘트가 전체 코멘트 보다 크면 전체 코멘트로 할당
            $c_last_record = $c_total_count;
        }
    }
    // 페이징 처리 함수 및 표시
    $c_pagelist = get_comment_paging($c_rows, $c_page, $c_total_page, G5_BBS_URL ."/board.php?bo_table={$bo_table}&c_rows={$c_rows}&wr_id={$wr_id}&c_page=");
    //if ($c_pagelist) { echo $c_pagelist; }
    
    $cmt_amt = $c_last_record;
    $i = $c_from_record;
    for ($i; $i<$cmt_amt; $i++) {



2-2. 그누보드5 / skin / board / basic / view_comment.skin.php

</section>
<!-- } 댓글 끝 -->

를 아래의 내용으로 변경

    <?php
    if ($c_pagelist) { echo $c_pagelist; }
    ?>
    <?php /* ?>
    <div>
        <div style="text-align:right;">
            <form method="post" action="<?php echo G5_BBS_URL; ?>/board.php?bo_table=<?php echo $bo_table; ?>&wr_id=<?php echo $wr_id; ?>">
                표시댓글수<input type="number" value="<?php echo $c_rows; ?>" name="c_rows" style="width:50px;">
                <input type="submit" value="설정">
            </form>
        </div>
    </div>
    <?php */ ?>
</section>
<!-- } 댓글 끝 -->


2-3. 그누보드5 / skin / board / basic / view_comment.skin.php

    <input type="hidden" name="comment_id" value="<?php echo $c_id ?>" id="comment_id">

를 아래와 같이 내용 추가

    <input type="hidden" name="comment_id" value="<?php echo $c_id ?>" id="comment_id">
    <input type="hidden" name="c_page" value="<?php echo $c_page; ?>">


3. 그누보드5 / bbs / write_comment.php

goto_url(G5_HTTP_BBS_URL.'/board.php?bo_table='.$bo_table.'&amp;wr_id='.$wr['wr_parent'].'&amp;'.$qstr.'&amp;#c_'.$comment_id);

를 아래의 것으로 변경

goto_url(G5_HTTP_BBS_URL ."/board.php?bo_table={$bo_table}&amp;wr_id={$wr['wr_parent']}&amp;page={$page}&amp;c_page={$c_page}&amp;{$qstr}#c_{$comment_id}");


참고자료
https://sir.kr/g5_tip/3336
https://sir.kr/qa/206990

댓글목록

등록된 댓글이 없습니다.


Total 458건 7 페이지
  • RSS
기술자료 목록
338
그누보드   9761  2017-12-12 13:35  
337
그누보드   9168  2017-12-12 13:35  
336
그누보드   12614  2017-12-12 01:13 ~ 2022-04-19 15:18  
335
그누보드   18754  2017-12-11 11:13 ~ 2017-12-11 11:17  
334
그누보드   9107  2017-12-05 16:30 ~ 2017-12-27 18:39  
열람
그누보드   11875  2017-11-30 06:43 ~ 2022-02-17 08:32  
332
그누보드   11415  2017-11-17 12:47 ~ 2017-11-20 05:00  
331
그누보드   10677  2017-11-16 01:42 ~ 2018-07-20 15:03  
330
그누보드   9849  2017-11-14 18:45  
329
그누보드   10263  2017-11-13 12:42 ~ 2018-03-07 04:47  
328
그누보드   12335  2017-11-11 22:39 ~ 2018-04-09 23:57  
327
그누보드   9086  2017-10-30 18:22 ~ 2022-04-21 02:46  
326
그누보드   13261  2017-10-22 03:28 ~ 2022-04-15 19:50  
325
그누보드   12742  2017-10-21 09:33 ~ 2018-01-18 17:33  
324
그누보드   12657  2017-10-10 15:50  
323
그누보드   10680  2017-10-10 13:55  
322
그누보드   10424  2017-09-29 21:04 ~ 2017-09-30 00:00  
321
그누보드   14532  2017-09-28 14:22 ~ 2022-04-15 19:48  
320
그누보드   10932  2017-09-26 11:09 ~ 2018-08-17 21:12  
319
그누보드   10026  2017-09-20 12:23  

검색

해피정닷컴 정보

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

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