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개
