102 lines
2.9 KiB
PHP
102 lines
2.9 KiB
PHP
<?php
|
|
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
|
|
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
|
add_stylesheet('<link rel="stylesheet" href="'.G5_SHOP_CSS_URL.'/style.css">', 0);
|
|
?>
|
|
|
|
<script src="<?php echo G5_JS_URL ?>/jquery.fancylist.js"></script>
|
|
|
|
<!-- 상품진열 10 시작 { -->
|
|
<?php
|
|
for ($i=0; $row=sql_fetch_array($result); $i++) {
|
|
if ($i == 0) {
|
|
if ($this->css) {
|
|
echo "<ul id=\"sct_wrap\" class=\"{$this->css}\">\n";
|
|
} else {
|
|
echo "<ul id=\"sct_wrap\" class=\"sct sct_10\">\n";
|
|
}
|
|
}
|
|
|
|
echo "<li class=\"sct_li\" style=\"width:{$this->img_width}px\">\n";
|
|
|
|
if ($this->href) {
|
|
echo "<div class=\"sct_img\"><a href=\"{$this->href}{$row['it_id']}\" class=\"sct_a\">\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></div>\n";
|
|
}
|
|
|
|
if ($this->view_it_icon) {
|
|
echo "<div class=\"sct_icon\">".item_icon($row)."</div>\n";
|
|
}
|
|
|
|
if ($this->view_it_id) {
|
|
echo "<div class=\"sct_id\"><".stripslashes($row['it_id'])."></div>\n";
|
|
}
|
|
|
|
if ($this->href) {
|
|
echo "<div class=\"sct_txt\"><a href=\"{$this->href}{$row['it_id']}\" class=\"sct_a\">\n";
|
|
}
|
|
|
|
if ($this->view_it_name) {
|
|
echo stripslashes($row['it_name'])."\n";
|
|
}
|
|
|
|
if ($this->href) {
|
|
echo "</a></div>\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_MSHOP_SKIN_URL.'/img/sns_fb.png');
|
|
echo get_sns_share_link('twitter', $sns_url, $sns_title, G5_MSHOP_SKIN_URL.'/img/sns_twt.png');
|
|
echo get_sns_share_link('googleplus', $sns_url, $sns_title, G5_MSHOP_SKIN_URL.'/img/sns_goo.png');
|
|
echo "</div>\n";
|
|
}
|
|
|
|
if ($this->href) {
|
|
echo "</a>\n";
|
|
}
|
|
|
|
echo "</li>\n";
|
|
}
|
|
|
|
if ($i > 0) echo "</ul>\n";
|
|
|
|
if($i == 0) echo "<p class=\"sct_noitem\">등록된 상품이 없습니다.</p>\n";
|
|
?>
|
|
<!-- } 상품진열 10 끝 -->
|
|
|
|
<script>
|
|
$(function() {
|
|
$("#sct_wrap").fancyList("li.sct_li", "sct_clear");
|
|
});
|
|
</script>
|