latest()에서 $list[$i]에 코멘트 추가하기

기존 latest 스킨에서 다음 변수
$list[ $i]['comment_str']
를 사용하시면 됩니다.


주의: 테스트 안 된 상태, 답변글이 있는 경우 고려하지 않음
코멘트 길이는 제목 길이와 같음

<?
if (!defined('_GNUBOARD_')) exit;

// 최신글 추출
function latest_wic($skin_dir="", $bo_table, $rows=10, $subject_len=40, $options="")
{
    global $g4;

    if ($skin_dir)
        $latest_skin_path = "$g4[path]/skin/latest/$skin_dir";
    else
        $latest_skin_path = "$g4[path]/skin/latest/basic";

    $list = array();

    $sql = " select * from $g4[board_table] where bo_table = '$bo_table'";
    $board = sql_fetch($sql);

    $tmp_write_table = $g4['write_prefix'] . $bo_table; // 게시판 테이블 전체이름
    //$sql = " select * from $tmp_write_table where wr_is_comment = 0 order by wr_id desc limit 0, $rows ";
    // 위의 코드 보다 속도가 빠름
    $sql = " select B.wr_id, B.wr_num, B.wr_is_comment, B.wr_subject, ifnull( wr_content, '') cmmt, C.wr_id, C.wr_parent from $tmp_write_table B left join $tmp_write_table C on B.wr_is_comment=0 and B.wr_id=C.wr_parent and C.wr_is_comment=1 where B.wr_is_comment=0 and B.wr_id>0 order by B.wr_num, C.wr_comment; limit 0, $rows ";
    //explain($sql);
    $result = sql_query($sql);

    $this=0;
    for ($i=0; $row = sql_fetch_array($result); $i++)
        if( $this == $row['wr_num']) { $this= $row['wr_num']; $list[ $i]['comment_str'].= cut_str( $row['cmmt'], $subject_len).', '; continue; }
        $list[$i] = get_list($row, $board, $latest_skin_path, $subject_len);

    ob_start();
    include "$latest_skin_path/latest.skin.php";
    $content = ob_get_contents();
    ob_end_clean();

    return $content;
}
?>
~

|

댓글 2개

이거 되시는 분? 전 안되는뎅...
$this=0; 에서 오류가 생기네요...
댓글을 작성하시려면 로그인이 필요합니다. 로그인

그누4 팁자료실

그누보드4와 관련된 팁을 여러분들과 함께 공유하세요. 나누면 즐거움이 커집니다.

+
제목 글쓴이 날짜 조회
17년 전 조회 2,784
17년 전 조회 5,512
17년 전 조회 8,721
17년 전 조회 2,107
17년 전 조회 5,185
17년 전 조회 2,948
17년 전 조회 3,049
17년 전 조회 3,993
17년 전 조회 3,700
17년 전 조회 3,243
17년 전 조회 4,611
17년 전 조회 4,886
17년 전 조회 3,473
17년 전 조회 2,989
17년 전 조회 5,493
17년 전 조회 4,799
17년 전 조회 3,153
17년 전 조회 7,488
17년 전 조회 5,965
17년 전 조회 8,883
🐛 버그신고