Files
firstgarden-web-gnu/adm/shop_admin/bannerlist.php
2013-09-13 14:32:06 +09:00

109 lines
3.4 KiB
PHP

<?php
$sub_menu = '500500';
include_once('./_common.php');
auth_check($auth[$sub_menu], "r");
$g5['title'] = '배너관리';
include_once (G5_ADMIN_PATH.'/admin.head.php');
$sql_common = " from {$g5['shop_banner_table']} ";
// 테이블의 전체 레코드수만 얻음
$sql = " select count(*) as cnt " . $sql_common;
$row = sql_fetch($sql);
$total_count = $row['cnt'];
$rows = $config['cf_page_rows'];
$total_page = ceil($total_count / $rows); // 전체 페이지 계산
if ($page == "") { $page = 1; } // 페이지가 없으면 첫 페이지 (1 페이지)
$from_record = ($page - 1) * $rows; // 시작 열을 구함
?>
<section class="cbox">
<h2>배너관리</h2>
<p>등록된 배너 <?php echo $total_count; ?>개</p>
<div class="btn_add">
<a href="./bannerform.php">배너추가</a>
</div>
<table id="tbl_bn_list">
<thead>
<tr>
<th scope="col" rowspan="2">ID</th>
<th scope="col">위치</th>
<th scope="col">시작일시</th>
<th scope="col">종료일시</th>
<th scope="col">출력순서</th>
<th scope="col">조회</th>
<th scope="col">관리</th>
</tr>
<tr>
<th scope="col" colspan="6">이미지</th>
</tr>
</thead>
<tbody>
<?php
$sql = " select * from {$g5['shop_banner_table']}
order by bn_order, bn_id desc
limit $from_record, $rows ";
$result = sql_query($sql);
for ($i=0; $row=mysql_fetch_array($result); $i++) {
// 테두리 있는지
$bn_border = $row['bn_border'];
// 새창 띄우기인지
$bn_new_win = ($row['bn_new_win']) ? 'target="_new"' : '';
$bimg = G5_DATA_PATH.'/banner/'.$row['bn_id'];
if(file_exists($bimg)) {
$size = @getimagesize($bimg);
if($size[0] && $size[0] > 800)
$width = 800;
else
$width = $size[0];
$bn_img = "";
if ($row['bn_url'] && $row['bn_url'] != "http://")
$bn_img .= '<a href="'.$row['bn_url'].'" '.$bn_new_win.'>';
$bn_img .= '<img src="'.G5_DATA_URL.'/banner/'.$row['bn_id'].'" width="'.$width.'" alt="'.$row['bn_alt'].'"></a>';
}
$bn_begin_time = substr($row['bn_begin_time'], 2, 14);
$bn_end_time = substr($row['bn_end_time'], 2, 14);
?>
<tr>
<td rowspan="2" class="td_num"><?php echo $row['bn_id']; ?></td>
<td><?php echo $row['bn_position']; ?></td>
<td><?php echo $bn_begin_time; ?></td>
<td><?php echo $bn_end_time; ?></td>
<td><?php echo $row['bn_order']; ?></td>
<td><?php echo $row['bn_hit']; ?></td>
<td class="td_smallmng">
<a href="./bannerform.php?w=u&amp;bn_id=<?php echo $row['bn_id']; ?>">수정</a></li>
<a href="./bannerformupdate.php?w=d&amp;bn_id=<?php echo $row['bn_id']; ?>" onclick="return delete_confirm();">삭제</a>
</td>
</tr>
<tr>
<td colspan="6" class="td_img_view"><?php echo $bn_img; ?></td>
</tr>
<?php
}
if ($i == 0) {
echo '<tr><td colspan="8" class="empty_table">자료가 없습니다.</td></tr>';
}
?>
</tbody>
</table>
</section>
<p><?php echo get_paging(G5_IS_MOBILE ? $config['cf_mobile_pages'] : $config['cf_write_pages'], $page, $total_page, "{$_SERVER['PHP_SELF']}?$qstr&amp;page="); ?></p>
<?php
include_once (G5_ADMIN_PATH.'/admin.tail.php');
?>