boxcart 등 파일 스킨으로 이동

This commit is contained in:
chicpro
2013-09-23 15:35:45 +09:00
parent 41763b12a2
commit 8e2546dbfa
9 changed files with 122 additions and 120 deletions

View File

@ -1098,7 +1098,7 @@ function display_banner($position, $num="")
if (!$position) $position = '왼쪽'; if (!$position) $position = '왼쪽';
include G5_SHOP_PATH.'/boxbanner'.$num.'.inc.php'; include G5_SHOP_SKIN_PATH.'/boxbanner'.$num.'.skin.php';
} }
// 1.00.02 // 1.00.02

View File

@ -93,21 +93,21 @@ include_once(G5_LIB_PATH.'/popular.lib.php');
<div id="wrapper"> <div id="wrapper">
<aside id="stv"> <aside id="stv">
<?php include(G5_SHOP_PATH.'/boxtodayview.inc.php'); ?> <?php include(G5_SHOP_SKIN_PATH.'/boxtodayview.skin.php'); ?>
</aside> </aside>
<div id="aside"> <div id="aside">
<?php echo outlogin('shop_basic'); // 아웃로그인 ?> <?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"> <aside id="sbn_aside">

View File

@ -1,4 +1,6 @@
<?php <?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 "; $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); $result = sql_query($sql);