이미지(배너) 출력 문의 드립니다. > 그누4 질문답변

그누4 질문답변

그누보드4 관련 질문은 QA 로 이전됩니다. QA 그누보드4 바로가기
기존 게시물은 열람만 가능합니다.

이미지(배너) 출력 문의 드립니다. 정보

이미지(배너) 출력 문의 드립니다.

본문

안녕하세요.
이미지(배너) 출력 문의 드립니다.
현재 배너게시판 스킨을 사용합니다.
메인화면 출력에서 배너가 세로로 한줄로만 출력이 되는데.
 
메인출력
<?=mw_latest("banner_right", "G04_1", 3, 2, 2, $mw[config][cf_index_])?>

배너를 가로로 4개정도 출력되게하고 세로로 게시판에 등록한 갯수만큼 출력이 되도록
하고 싶습니다.

배너게시판 스킨을 수정해야 하는지, 메인출력 latest소스를 수정해야하는지를 모르겠습니다.


현재latest소스가 "banner_right" "banner_left" 이렇게 2가지가 있습니다.
right,left를 바꾸어봐도 한줄로만 출력이 되고있습니다.
고수님들의 조언좀 부탁드리겠습니다.

아래는 [latest]  right소스

<?
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
?>

<table width="80%" cellpadding=0 cellspacing=0 border=0><tr><td>

<table width="100%" border="0" cellspacing="0" cellpadding="0">
<!-- <tr><td height=10></td></tr> -->
<? for ($i=0; $i<count($list); $i++) { ?>
<tr>
<td align="center">

        <?               
echo "<a href='{$list[$i][wr_1]}'  target='{$list[$i][wr_2]}'>";
            $image = urlencode($list[$i][file][0][file]); // 첫번째 파일이 이미지라면
            if (preg_match("/\.(gif|jpg|png)$/i", $image)) { ?>
<img src='<?=$g4[path]?>/data/file/<?=$bo_table?>/<?=$image?>' width='195' border='0'></a><br>
<? } else { ?>
<img src='<?=$latest_skin_path?>/img/noimage.gif' width='195' border='0'></a><br>
<? } ?>
           
</td>
</tr>
<tr><td height=7></td></tr>
<? } ?>
</table>

</td></tr></table>
-----------------------------------------------------------------------------------------
아래는 게시판 latest.skin.php 입니다.


<?
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가

if ($is_admin != "super") {
echo "<script>";
echo "alert('접근 권한이 없습니다');";
echo "opener.location.href('$g4[path]/bbs/login.php');";
echo "close();";
echo "</script>";
exit;
}

echo "<script>
resizeTo(1024,768);
</script>";

$category_list = explode("|", $board[bo_category_list]);
$op1 = explode("|", $board[bo_1]);
$op2 = explode("|", $board[bo_2]);
$op3 = explode("|", $board[bo_3]);
$op4 = explode("|", $board[bo_4]);

// 선택옵션으로 인해 셀합치기가 가변적으로 변함
$colspan = 8;

include_once("$board_skin_path/control.php");

if ($is_checkbox) $colspan++;
if ($is_good) $colspan++;
if ($is_nogood) $colspan++;
?>
<div style="height:12px; line-height:1px; font-size:1px;">&nbsp;</div>

<!-- 게시판 목록 시작 -->
<table width="<?=$width?>" align=center cellpadding=0 cellspacing=0><tr><td>

<!-- 분류 셀렉트 박스, 게시물 몇건, 관리자화면 링크 -->
<table border=0 width="100%" cellspacing="0" cellpadding="0">
<tr height="25">
    <td width="50%">
        <form name="fcategory" method="get" style="margin:0; padding:0;">
        <? if ($is_category) { ?>
        <select name=sca onchange="location='<?=$category_location?>'+this.value;">
        <option value=''>전체</option>
        <?=$category_option?>
        </select>
        <? } ?>
        </form>
    </td>
    <td align="right">
        <img src="<?=$board_skin_path?>/img/icon_total.gif" align=absmiddle>
        <span style="color:#888888; font-weight:bold;">Total <?=number_format($total_count)?></span>
        <? if ($rss_href) { ?><a href='<?=$rss_href?>'><img src='<?=$board_skin_path?>/img/btn_rss.gif' border=0 align=absmiddle></a><?}?>
        <? if ($admin_href) { ?><a href="<?=$admin_href?>"><img src="<?=$board_skin_path?>/img/btn_admin.gif" title="관리자" align="absmiddle"></a><?}?>
    </td>
</tr>
<tr><td height=5></td></tr>
</table>

<!-- 제목 -->
<form name="fboardlist" method="post" style="margin:0;">
<input type='hidden' name='bo_table' value='<?=$bo_table?>'>
<input type='hidden' name='sfl'  value='<?=$sfl?>'>
<input type='hidden' name='stx'  value='<?=$stx?>'>
<input type='hidden' name='spt'  value='<?=$spt?>'>
<input type='hidden' name='page' value='<?=$page?>'>
<input type='hidden' name='sw'  value=''>

<table style="font-weight:bold; color:#505050; height:40;" width=100% border=0 cellpadding=0 cellspacing=0>
<tr><td colspan=<?=$colspan?> height=3 bgcolor=#999999></td></tr>
<tr>
    <td width=50 align=center>번호</td>
    <? if ($is_checkbox) { ?><td width=40 align=center><input onclick="if (this.checked) all_checked(true); else all_checked(false);" type=checkbox></td><?}?>
<td align=center>배 너</td>
<td align=center width=80>등록상태</td>
    <td align=center width=80>상세보기</td>   
    <td width=50 align=center>클릭수</td>   
</tr>
<tr><td colspan=<?=$colspan?> height=2 bgcolor=#999999></td></tr>
</table>

<table width=100% border=0 cellpadding=0 cellspacing=0>
<!-- 목록 -->
<? for ($i=0; $i<count($list); $i++) { ?>
<tr height=29>
    <td width=50 align=center>
        <?
        if ($list[$i][is_notice]) // 공지사항
            echo "<img src=\"$board_skin_path/img/icon_notice.gif\">";
        else if ($wr_id == $list[$i][wr_id]) // 현재위치
            echo "<span style='font:bold 11px tahoma; color:#E15916;'>{$list[$i][num]}</span>";
        else
            echo "<span style='font:normal 11px tahoma; color:#B3B3B3;'>{$list[$i][num]}</span>";
        ?>
    </td>
    <? if ($is_checkbox) { ?><td width=40 align=center><input type=checkbox name=chk_wr_id[] value="<?=$list[$i][wr_id]?>"></td><? } ?>
<td>
<?

if ($list[$i][file][0][file]) {

if (preg_match("/\.(swf)$/i", $list[$i][file][0][file])) {
echo "<embed src='$g4[path]/data/file/$bo_table/{$list[$i][file][0][file]}' height='{$op3[$list[$i][wr_2]]}' width='{$op2[$list[$i][wr_2]]}'>";
}elseif (preg_match("/\.(jpg|gif|png|bmp)$/i", $list[$i][file][0][file])) {
echo "<a target='blank' href='{$list[$i][wr_link1]}'><img src='$g4[path]/data/file/$bo_table/{$list[$i][file][0][file]}' width='{$op2[$list[$i][wr_2]]}' height='{$op3[$list[$i][wr_2]]}' style='border:1px solid #999999;'></a>";
}

} else {
echo "<a style='border:1px solid #999999; width:200; height:80;'><b>베너가없습니다</b></a>";
}

?>
</td>
<td align=center width=80><?=$list[$i][ca_name]?></td>
<td align=center width=80><a href='<?=$list[$i][href]?>'>상세보기</a></td>
    <td width=50 align=center><span style='font:normal 11px tahoma; color:#BABABA;'><?if(!$list[$i][wr_3]) echo "0"; else echo $list[$i][wr_3];?></span></td>   
</tr>
<tr><td colspan=<?=$colspan?> height=1 bgcolor=#eeeeee></td></tr>
<?}?>
<? if (count($list) == 0) { echo "<tr><td colspan='$colspan' height=100 align=center>게시물이 없습니다.</td></tr>"; } ?>
</table>
</form>


<div style="clear:both; margin-top:7px; height:31px;">
    <div style="float:left;">
    <? if ($list_href) { ?>
    <a href="<?=$list_href?>"><img src="<?=$board_skin_path?>/img/btn_list.gif" align=absmiddle></a>
    <? } ?>
    <? if ($is_checkbox) { ?>
    <a href="javascript:select_delete();"><img src="<?=$board_skin_path?>/img/btn_select_delete.gif" align=absmiddle></a>
    <a href="javascript:select_copy('copy');"><img src="<?=$board_skin_path?>/img/btn_select_copy.gif" align=absmiddle></a>
    <a href="javascript:select_copy('move');"><img src="<?=$board_skin_path?>/img/btn_select_move.gif" align=absmiddle></a>
    <? } ?>
    </div>

    <div style="float:right;">
    <? if ($write_href) { ?><a href="<?=$write_href?>"><img src="<?=$board_skin_path?>/img/btn_write.gif" border="0"></a><? } ?>
    </div>
</div>

<div style="height:1px; line-height:1px; font-size:1px; background-color:#eee; clear:both;">&nbsp;</div>
<div style="height:1px; line-height:1px; font-size:1px; background-color:#ddd; clear:both;">&nbsp;</div>

<!-- 페이지 -->
<div style="text-align:center; line-height:30px; clear:both; margin:5px 0 10px 0; padding:5px 0; font-family:gulim;">

    <? if ($prev_part_href) { echo "<a href='$prev_part_href'><img src='$board_skin_path/img/page_search_prev.gif' border=0 align=absmiddle title='이전검색'></a>"; } ?>
    <?
    // 기본으로 넘어오는 페이지를 아래와 같이 변환하여 이미지로도 출력할 수 있습니다.
    //echo $write_pages;
    $write_pages = str_replace("처음", "<img src='$board_skin_path/img/page_begin.gif' border='0' align='absmiddle' title='처음'>", $write_pages);
    $write_pages = str_replace("이전", "<img src='$board_skin_path/img/page_prev.gif' border='0' align='absmiddle' title='이전'>", $write_pages);
    $write_pages = str_replace("다음", "<img src='$board_skin_path/img/page_next.gif' border='0' align='absmiddle' title='다음'>", $write_pages);
    $write_pages = str_replace("맨끝", "<img src='$board_skin_path/img/page_end.gif' border='0' align='absmiddle' title='맨끝'>", $write_pages);
    $write_pages = preg_replace("/<span>([0-9]*)<\/span>/", "<b><span style=\"color:#B3B3B3; font-size:12px;\">$1</span></b>", $write_pages);
    $write_pages = preg_replace("/<b>([0-9]*)<\/b>/", "<b><span style=\"color:#4D6185; font-size:12px; text-decoration:underline;\">$1</span></b>", $write_pages);
    ?>
    <?=$write_pages?>
    <? if ($next_part_href) { echo "<a href='$next_part_href'><img src='$board_skin_path/img/page_search_next.gif' border=0 align=absmiddle title='다음검색'></a>"; } ?>

</div>

</td></tr></table>


<? if ($is_checkbox) { ?>
<script language="JavaScript">
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 check_confirm(str) {
    var f = document.fboardlist;
    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(str + "할 게시물을 하나 이상 선택하세요.");
        return false;
    }
    return true;
}

// 선택한 게시물 삭제
function select_delete() {
    var f = document.fboardlist;

    str = "삭제";
    if (!check_confirm(str))
        return;

    if (!confirm("선택한 게시물을 정말 "+str+" 하시겠습니까?\n\n한번 "+str+"한 자료는 복구할 수 없습니다"))
        return;

    f.action = "./delete_all.php";
    f.submit();
}

// 선택한 게시물 복사 및 이동
function select_copy(sw) {
    var f = document.fboardlist;

    if (sw == "copy")
        str = "복사";
    else
        str = "이동";
                     
    if (!check_confirm(str))
        return;

    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>
<? } ?>
<!-- 게시판 목록 끝 -->
  • 복사

댓글 전체

© SIRSOFT
현재 페이지 제일 처음으로