채택완료

게시판 리스트의 썸네일

2015-07-01 (수) 12:02:32 3,882
|

답변 1개 / 댓글 1개

채택된 답변
+20 포인트
2015-07-01 (수) 12:35:25

위에 올려주신 소스중 약 72번째줄 부근 공지사항이 출력되는 코드를 바로아래의 썸네일 생성코드로 변경해 주시면 됩니다.

아래 코드는 테스트를 해보지 않아 오류가 있을 수 있으니 참고해서 사용하시기 바랍니다.

Copy
<?php include_once(G5_LIB_PATH.'/thumbnail.lib.php');// 썸네일 크기 설정$thumb_width = '110';    //썸네일 넓이$thumb_height = '80';    //썸네일 높이// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨add_stylesheet('<link rel="stylesheet" href="'.$board_skin_url.'/style.css">', 0);?><h2 id="container_title"><?php echo $board['bo_subject'] ?><span class="sound_only"> 목록</span></h2><!-- 게시판 목록 시작 { --><div id="bo_gall" style="width:<?php echo $width; ?>">    <?php if ($is_category) { ?>    <nav id="bo_cate">        <h2><?php echo $board['bo_subject'] ?> 카테고리</h2>        <ul id="bo_cate_ul">            <?php echo $category_option ?>        </ul>    </nav>    <?php } ?>    <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>    <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="page" value="<?php echo $page ?>">    <input type="hidden" name="sw" value="">    <?php if ($is_checkbox) { ?>    <div id="gall_allchk">        <label for="chkall" class="sound_only">현재 페이지 게시물 전체</label>        <input type="checkbox" id="chkall" onclick="if (this.checked) all_checked(true); else all_checked(false);">    </div>    <?php } ?>    <ul id="gall_ul">        <?php for ($i=0; $i<count($list); $i++) {/*            if($i>0 && ($i % $bo_gallery_cols == 0))                $style = 'clear:both;';            else                $style = '';            if ($i == 0) $k = 0;            $k += 1;            if ($k % $bo_gallery_cols == 0) $style .= "margin:0 !important;";*/         ?>  <li class="gall_li <?php if ($wr_id == $list[$i]['wr_id']) { ?>gall_now<?php } ?>">            <span class="sound_only">                <?php                if ($wr_id == $list[$i]['wr_id'])                    echo "<span class=\"bo_current\">열람중</span>";                else                    echo $list[$i]['num'];                 ?>            </span>            <ul class="gall_con"> <!-- 이미지 출력 -->                <li class="gall_href" style="padding:4px; border:1px solid #ddd;">                    <a href="<?php echo $list[$i]['href'] ?>">                    <?php                    if ($list[$i]['is_notice']) { // 공지사항						//공지사항도 썸네일 추출 2015-07-01                        // $thumb = get_list_thumbnail($board['bo_table'], $list[$i]['wr_id'], $board['bo_gallery_width'], $board['bo_gallery_height']);                        $thumb = get_list_thumbnail($board['bo_table'], $list[$i]['wr_id'], $thumb_width, $thumb_height); // 썸네일 크기를 위에서 선언한 크기사용                        if($thumb['src']) {                            // $img_content = '<img src="'.$thumb['src'].'" alt="'.$thumb['alt'].'" width="'.$board['bo_gallery_width'].'" height="'.$board['bo_gallery_height'].'">';                            $img_content = '<img src="'.$thumb['src'].'" alt="'.$thumb['alt'].'" width="'.$thumb_width.'" height="'.$thumb_height.'">';                        } else {                            // $img_content = '<span style="width:'.$board['bo_gallery_width'].'px;height:'.$board['bo_gallery_height'].'px">no image</span>';       $img_content = '<span style="width:'.$thumb_width.'px;height:'.$thumb_height.'px">no image</span>';						}                    } else {                        // $thumb = get_list_thumbnail($board['bo_table'], $list[$i]['wr_id'], $board['bo_gallery_width'], $board['bo_gallery_height']);                        $thumb = get_list_thumbnail($board['bo_table'], $list[$i]['wr_id'], $thumb_width, $thumb_height); // 썸네일 크기를 위에서 선언한 크기사용                        if($thumb['src']) {                            // $img_content = '<img src="'.$thumb['src'].'" alt="'.$thumb['alt'].'" width="'.$board['bo_gallery_width'].'" height="'.$board['bo_gallery_height'].'">';                            $img_content = '<img src="'.$thumb['src'].'" alt="'.$thumb['alt'].'" width="'.$thumb_width.'" height="'.$thumb_height.'">';                        } else {                            // $img_content = '<span style="width:'.$board['bo_gallery_width'].'px;height:'.$board['bo_gallery_height'].'px">no image</span>';       $img_content = '<span style="width:'.$thumb_width.'px;height:'.$thumb_height.'px">no image</span>';                        }                        echo $img_content;                    }                     ?>                    </a>                </li>   </ul>            <ul class="gall_con2">  <!-- 제목,내용 출력 -->                <li class="gall_text_href">              <?php if ($is_checkbox) { ?>         <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 ?>">        <?php } ?>                    <a href="<?php echo $list[$i]['href'] ?>">                        <?php echo $list[$i]['subject'] ?>                        <?php if ($list[$i]['comment_cnt']) { ?><span class="sound_only">댓글</span><?php echo $list[$i]['comment_cnt']; ?><span class="sound_only">개</span><?php } ?>                    </a>                    <?php                    // if ($list[$i]['link']['count']) { echo '['.$list[$i]['link']['count']}.']'; }                    // if ($list[$i]['file']['count']) { echo '<'.$list[$i]['file']['count'].'>'; }                    if (isset($list[$i]['icon_new'])) echo $list[$i]['icon_new'];                    if (isset($list[$i]['icon_hot'])) echo $list[$i]['icon_hot'];                    //if (isset($list[$i]['icon_file'])) echo $list[$i]['icon_file'];                    //if (isset($list[$i]['icon_link'])) echo $list[$i]['icon_link'];                    //if (isset($list[$i]['icon_secret'])) echo $list[$i]['icon_secret'];                     ?>                </li>                <li>     <?php              if ($list[$i]['is_notice']) // 공지사항               echo '<strong>공지</strong>';        else         echo "<span class='bo_num'>".$list[$i]['num']."</span>";     ?>     <?php     if ($is_category && $list[$i]['ca_name'] && !$list[$i]['is_notice']) {  // 공지사항은 분류출력 안함 ?>                     <a href="<?php echo $list[$i]['ca_name_href'] ?>" class="bo_cate_link"><?php echo $list[$i]['ca_name'] ?></a> <span class="bo_gubun">|</span>                    <?php } ?>     <?php echo $list[$i]['name'] ?> <span class="bo_gubun">|</span>        <!-- 작성자 -->                    <?php echo $list[$i]['datetime2'] ?> <span class="bo_gubun">|</span>   <!-- 작성일 -->                    <span class="gall_subject">조회 </span><?php echo $list[$i]['wr_hit'] ?>     <?php if ($is_good) { ?><span class="gall_subject">추천</span><strong><?php echo $list[$i]['wr_good'] ?></strong><?php } ?>                 <?php if ($is_nogood) { ?><span class="gall_subject">비추천</span><strong><?php echo $list[$i]['wr_nogood'] ?></strong><?php } ?>    </li>    <?php     $wr_content = preg_replace("/<(.*?)\>/"," ",$list[$i][wr_content]);      $wr_content = preg_replace("/&nbsp;/"," ",$wr_content);      $wr_content = str_replace("//##", " ", $wr_content);      $wr_content = cut_str(get_text($wr_content), 100, '…');        if (!$list[$i]['is_notice']) { // 공지사항이 아닐경우 내용출력 ?>     <li class="bo_content"><?php echo $wr_content?></li>    <?php } ?>   </ul>        </li>        <?php } ?>        <?php if (count($list) == 0) { echo "<li class=\"empty_list\">게시물이 없습니다.</li>"; } ?>    </ul>    <?php if ($list_href || $is_checkbox || $write_href) { ?>    <div class="bo_fx">        <?php if ($is_checkbox) { ?>        <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>        <?php } ?>        <?php if ($list_href || $write_href) { ?>        <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>        <?php } ?>    </div>    <?php } ?>    </form></div><?php if($is_checkbox) { ?><noscript><p>자바스크립트를 사용하지 않는 경우<br>별도의 확인 절차 없이 바로 선택삭제 처리하므로 주의하시기 바랍니다.</p></noscript><?php } ?><!-- 페이지 --><?php echo $write_pages;  ?><!-- 게시물 검색 시작 { --><fieldset id="bo_sch">    <legend>게시물 검색</legend>    <form name="fsearch" method="get">    <input type="hidden" name="bo_table" value="<?php echo $bo_table ?>">    <input type="hidden" name="sca" value="<?php echo $sca ?>">    <input type="hidden" name="sop" value="and">    <label for="sfl" class="sound_only">검색대상</label>    <select name="sfl" id="sfl">        <option value="wr_subject"<?php echo get_selected($sfl, 'wr_subject', true); ?>>제목</option>        <option value="wr_content"<?php echo get_selected($sfl, 'wr_content'); ?>>내용</option>        <option value="wr_subject||wr_content"<?php echo get_selected($sfl, 'wr_subject||wr_content'); ?>>제목+내용</option>        <option value="mb_id,1"<?php echo get_selected($sfl, 'mb_id,1'); ?>>회원아이디</option>        <option value="mb_id,0"<?php echo get_selected($sfl, 'mb_id,0'); ?>>회원아이디(코)</option>        <option value="wr_name,1"<?php echo get_selected($sfl, 'wr_name,1'); ?>>글쓴이</option>        <option value="wr_name,0"<?php echo get_selected($sfl, 'wr_name,0'); ?>>글쓴이(코)</option>    </select>    <label for="stx" class="sound_only">검색어<strong class="sound_only"> 필수</strong></label> <input type="text" name="stx" value="<?php echo stripslashes($stx) ?>" required id="stx" class="frm_input required" size="15" maxlength="15">    <input type="submit" value="검색" class="btn_submit">    </form></fieldset><!-- } 게시물 검색 끝 --><?php if ($is_checkbox) { ?><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 } ?><!-- } 게시판 목록 끝 -->

답변에 대한 댓글 1개

웹사이팅님 답변 감사합니다.
정리해주신 부분중 아래부분이 포인트인거 같아서 저부분만 복사해서 해당부분을 정리해서 실행해보니... 공지글 썸네일부분 네모테두리와 공지는 사라지고 썸네일은 나타나지 않네요.
혹시 제가 빠뜨린게 있는지 모르겠네요...


<ul class="gall_con"> <!-- 이미지 출력 -->
<li class="gall_href" style="padding:4px; border:1px solid #ddd;">
<a href="<?php echo $list[$i]['href'] ?>">
<?php
if ($list[$i]['is_notice']) { // 공지사항
//공지사항도 썸네일 추출 2015-07-01
// $thumb = get_list_thumbnail($board['bo_table'], $list[$i]['wr_id'], $board['bo_gallery_width'], $board['bo_gallery_height']);
$thumb = get_list_thumbnail($board['bo_table'], $list[$i]['wr_id'], $thumb_width, $thumb_height); // 썸네일 크기를 위에서 선언한 크기사용
if($thumb['src']) {
// $img_content = '<img src="'.$thumb['src'].'" alt="'.$thumb['alt'].'" width="'.$board['bo_gallery_width'].'" height="'.$board['bo_gallery_height'].'">';
$img_content = '<img src="'.$thumb['src'].'" alt="'.$thumb['alt'].'" width="'.$thumb_width.'" height="'.$thumb_height.'">';
} else {
// $img_content = '<span style="width:'.$board['bo_gallery_width'].'px;height:'.$board['bo_gallery_height'].'px">no image</span>';
$img_content = '<span style="width:'.$thumb_width.'px;height:'.$thumb_height.'px">no image</span>';
}
} else {
// $thumb = get_list_thumbnail($board['bo_table'], $list[$i]['wr_id'], $board['bo_gallery_width'], $board['bo_gallery_height']);
$thumb = get_list_thumbnail($board['bo_table'], $list[$i]['wr_id'], $thumb_width, $thumb_height); // 썸네일 크기를 위에서 선언한 크기사용
if($thumb['src']) {
// $img_content = '<img src="'.$thumb['src'].'" alt="'.$thumb['alt'].'" width="'.$board['bo_gallery_width'].'" height="'.$board['bo_gallery_height'].'">';
$img_content = '<img src="'.$thumb['src'].'" alt="'.$thumb['alt'].'" width="'.$thumb_width.'" height="'.$thumb_height.'">';
} else {
// $img_content = '<span style="width:'.$board['bo_gallery_width'].'px;height:'.$board['bo_gallery_height'].'px">no image</span>';
$img_content = '<span style="width:'.$thumb_width.'px;height:'.$thumb_height.'px">no image</span>';
}
echo $img_content;
}
?>
</a>
</li>
</ul>
<ul class="gall_con2"> <!-- 제목,내용 출력 -->

답변을 작성하려면 로그인이 필요합니다.