display_banner 에 탑이라고 만들려면 어떻게 해야 되나요?
본문
shop.lib.php 에서 display_banner 에 왼쪽 말고 탑 이라고 하나 더 넣고 싶은데
어떻게 해야 되나요?
if (!$position) $position = '탑';
if (!$skin) $skin = 'topbanner.skin.php';
이런식으로 하였는데, boxbanner.skin.php 에서 작동이 되네요 ㅜ
도움 부탁 드립니다ㅜ
// 배너출력
function display_banner($position, $skin='')
{
global $g5;
if (!$position) $position = '왼쪽';
if (!$skin) $skin = 'boxbanner.skin.php';
$skin_path = G5_SHOP_SKIN_PATH.'/'.$skin;
if(G5_IS_MOBILE)
$skin_path = G5_MSHOP_SKIN_PATH.'/'.$skin;
if(file_exists($skin_path)) {
// 접속기기
$sql_device = " and ( bn_device = 'both' or bn_device = 'pc' ) ";
if(G5_IS_MOBILE)
$sql_device = " and ( bn_device = 'both' or bn_device = 'mobile' ) ";
// 배너 출력
$sql = " select * from {$g5['g5_shop_banner_table']} where '".G5_TIME_YMDHIS."' between bn_begin_time and bn_end_time $sql_device and bn_position = '$position' order by bn_order, bn_id desc ";
$result = sql_query($sql);
include $skin_path;
} else {
echo '<p>'.str_replace(G5_PATH.'/', '', $skin_path).'파일이 존재하지 않습니다.</p>';
}
}