113 lines
3.8 KiB
PHP
113 lines
3.8 KiB
PHP
<?php
|
|
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
|
|
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
|
add_stylesheet('<link rel="stylesheet" href="'.G5_SHOP_SKIN_URL.'/style.css">', 0);
|
|
|
|
// 관련상품 스킨은 사품을 한줄에 하나만 표시하며 해당 상품에 관련상품이 등록되어 있는 경우 기본으로 7개까지 노출합니다.
|
|
?>
|
|
|
|
<!-- 상품진열 40 시작 { -->
|
|
<?php
|
|
for ($i=1; $row=sql_fetch_array($result); $i++) {
|
|
$href = G5_SHOP_URL.'/item.php?it_id='.$row['it_id'];
|
|
if ($list_mod >= 2) { // 1줄 이미지 : 2개 이상
|
|
if ($i%$list_mod == 0) $sct_last = ' sct_last'; // 줄 마지막
|
|
else if ($i%$list_mod == 1) $sct_last = ' sct_clear'; // 줄 첫번째
|
|
else $sct_last = '';
|
|
} else { // 1줄 이미지 : 1개
|
|
$sct_last = ' sct_clear';
|
|
}
|
|
|
|
if ($i == 1) {
|
|
if ($this->css) {
|
|
echo "<ul class=\"{$this->css}\">\n";
|
|
} else {
|
|
echo "<ul class=\"sct sct_40\">\n";
|
|
}
|
|
}
|
|
|
|
$list_top_pad = 20;
|
|
$list_right_pad = 10;
|
|
$list_bottom_pad = 20;
|
|
$list_left_pad = $this->img_width + 10;
|
|
$list_real_width = 740;
|
|
$list_width = $list_real_width - $list_right_pad - $list_left_pad;
|
|
$list_height = $this->img_height - $list_top_pad - $list_bottom_pad;
|
|
|
|
echo "<li class=\"sct_li{$sct_last}\" style=\"padding:{$list_top_pad}px {$list_right_pad}px {$list_bottom_pad}px {$list_left_pad}px;width:{$list_width}px;height:{$list_height}px\">\n";
|
|
|
|
if ($this->href) {
|
|
echo "<a href=\"{$this->href}{$row['it_id']}\" class=\"sct_a sct_img\">\n";
|
|
}
|
|
|
|
if ($this->view_it_img) {
|
|
echo get_it_image($row['it_id'], $this->img_width, $this->img_height, '', '', stripslashes($row['it_name']))."\n";
|
|
}
|
|
|
|
if ($this->href) {
|
|
echo "</a>\n";
|
|
}
|
|
|
|
if ($this->view_it_icon) {
|
|
echo "<span class=\"sct_icon\">".item_icon($row)."</span>\n";
|
|
}
|
|
|
|
if ($this->view_it_id) {
|
|
echo "<span class=\"sct_id\"><".stripslashes($row['it_id'])."></span>\n";
|
|
}
|
|
|
|
if ($this->href) {
|
|
echo "<a href=\"{$this->href}{$row['it_id']}\" class=\"sct_a sct_txt\">\n";
|
|
}
|
|
|
|
if ($this->view_it_name) {
|
|
echo stripslashes($row['it_name'])."\n";
|
|
}
|
|
|
|
if ($this->href) {
|
|
echo "</a>\n";
|
|
}
|
|
|
|
if ($this->view_it_basic && $row['it_basic']) {
|
|
echo "<div class=\"sct_basic\">".stripslashes($row['it_basic'])."</div>\n";
|
|
}
|
|
|
|
if ($this->view_it_cust_price || $this->view_it_price) {
|
|
|
|
echo "<div class=\"sct_cost\">\n";
|
|
|
|
if ($this->view_it_cust_price && $row['it_cust_price']) {
|
|
echo "<strike>".display_price($row['it_cust_price'])."</strike>\n";
|
|
}
|
|
|
|
if ($this->view_it_price) {
|
|
echo display_price(get_price($row), $row['it_tel_inq'])."\n";
|
|
}
|
|
|
|
echo "</div>\n";
|
|
|
|
}
|
|
|
|
if ($this->view_sns) {
|
|
$sns_url = G5_SHOP_URL.'/item.php?it_id='.$row['it_id'];
|
|
$sns_title = get_text($row['it_name']).' | '.get_text($config['cf_title']);
|
|
echo "<div class=\"sct_sns\">";
|
|
echo get_sns_share_link('facebook', $sns_url, $sns_title, G5_SHOP_SKIN_URL.'/img/sns_fb.png');
|
|
echo get_sns_share_link('twitter', $sns_url, $sns_title, G5_SHOP_SKIN_URL.'/img/sns_twt.png');
|
|
echo get_sns_share_link('googleplus', $sns_url, $sns_title, G5_SHOP_SKIN_URL.'/img/sns_goo.png');
|
|
echo "</div>\n";
|
|
}
|
|
|
|
// 관련상품
|
|
echo "<div class=\"sct_rel\">".relation_item($row['it_id'], 70, 0, 5)."</div>\n";
|
|
|
|
echo "</li>\n";
|
|
}
|
|
|
|
if ($i > 1) echo "</ul>\n";
|
|
|
|
if($i == 1) echo "<p class=\"sct_noitem\">등록된 상품이 없습니다.</p>\n";
|
|
?>
|
|
<!-- } 상품진열13 끝 -->
|