latest()에서 $list[$i]에 코멘트 추가하기 > 그누4 팁자료실

그누4 팁자료실

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

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

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;
}
?>
~

추천
0

댓글 2개

전체 3,309 |RSS
그누4 팁자료실 내용 검색

회원로그인

(주)에스아이알소프트 / 대표:홍석명 / (06211) 서울특별시 강남구 역삼동 707-34 한신인터밸리24 서관 1402호 / E-Mail: admin@sir.kr
사업자등록번호: 217-81-36347 / 통신판매업신고번호:2014-서울강남-02098호 / 개인정보보호책임자:김민섭(minsup@sir.kr)
© SIRSOFT