boxcart 등 파일 스킨으로 이동
This commit is contained in:
@ -1098,7 +1098,7 @@ function display_banner($position, $num="")
|
||||
|
||||
if (!$position) $position = '왼쪽';
|
||||
|
||||
include G5_SHOP_PATH.'/boxbanner'.$num.'.inc.php';
|
||||
include G5_SHOP_SKIN_PATH.'/boxbanner'.$num.'.skin.php';
|
||||
}
|
||||
|
||||
// 1.00.02
|
||||
|
||||
@ -93,21 +93,21 @@ include_once(G5_LIB_PATH.'/popular.lib.php');
|
||||
<div id="wrapper">
|
||||
|
||||
<aside id="stv">
|
||||
<?php include(G5_SHOP_PATH.'/boxtodayview.inc.php'); ?>
|
||||
<?php include(G5_SHOP_SKIN_PATH.'/boxtodayview.skin.php'); ?>
|
||||
</aside>
|
||||
|
||||
<div id="aside">
|
||||
<?php echo outlogin('shop_basic'); // 아웃로그인 ?>
|
||||
|
||||
<?php include_once(G5_SHOP_PATH.'/boxcategory.inc.php'); // 상품분류 ?>
|
||||
<?php include_once(G5_SHOP_SKIN_PATH.'/boxcategory.skin.php'); // 상품분류 ?>
|
||||
|
||||
<?php include_once(G5_SHOP_PATH.'/boxcart.inc.php'); // 장바구니 ?>
|
||||
<?php include_once(G5_SHOP_SKIN_PATH.'/boxcart.skin.php'); // 장바구니 ?>
|
||||
|
||||
<?php include_once(G5_SHOP_PATH.'/boxwish.inc.php'); // 위시리스트 ?>
|
||||
<?php include_once(G5_SHOP_SKIN_PATH.'/boxwish.skin.php'); // 위시리스트 ?>
|
||||
|
||||
<?php include_once(G5_SHOP_PATH.'/boxevent.inc.php'); // 이벤트 ?>
|
||||
<?php include_once(G5_SHOP_SKIN_PATH.'/boxevent.skin.php'); // 이벤트 ?>
|
||||
|
||||
<?php include_once(G5_SHOP_PATH.'/boxcommunity.inc.php'); // 커뮤니티 ?>
|
||||
<?php include_once(G5_SHOP_SKIN_PATH.'/boxcommunity.skin.php'); // 커뮤니티 ?>
|
||||
|
||||
<!-- 쇼핑몰 배너 시작 { -->
|
||||
<aside id="sbn_aside">
|
||||
|
||||
@ -1,4 +1,6 @@
|
||||
<?php
|
||||
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
||||
|
||||
// 배너 출력
|
||||
$sql = " select * from {$g5['g5_shop_banner_table']} where '".G5_TIME_YMDHIS."' between bn_begin_time and bn_end_time and bn_position = '$position' order by bn_order, bn_id desc ";
|
||||
$result = sql_query($sql);
|
||||
Reference in New Issue
Block a user