| 1 | <?php |
|---|
| 2 | /* |
|---|
| 3 | * Copyright(c) 2000-2006 LOCKON CO.,LTD. All Rights Reserved. |
|---|
| 4 | * |
|---|
| 5 | * http://www.lockon.co.jp/ |
|---|
| 6 | */ |
|---|
| 7 | |
|---|
| 8 | //¶¦ÄÌÉôÉÊ¤ÎÆÉ¤ß¹þ¤ß |
|---|
| 9 | require_once("../require.php"); |
|---|
| 10 | |
|---|
| 11 | class LC_Page{ |
|---|
| 12 | function LC_Page(){ |
|---|
| 13 | $this->tpl_mainpage = "rss/product.tpl"; |
|---|
| 14 | $this->encode = "UTF-8"; |
|---|
| 15 | ($_GET['product_id'] == "") ? $this->title = "¾¦ÉʰìÍ÷¾ðÊó" : $this->title = "¾¦ÉʾܺپðÊó"; |
|---|
| 16 | } |
|---|
| 17 | } |
|---|
| 18 | |
|---|
| 19 | $objQuery = new SC_Query(); |
|---|
| 20 | $objPage = new LC_Page(); |
|---|
| 21 | $objView = new SC_SiteView(); |
|---|
| 22 | $objSiteInfo = new SC_SiteInfo(); |
|---|
| 23 | |
|---|
| 24 | //¾¦ÉÊID¤ò¼èÆÀ |
|---|
| 25 | $product_id = $_GET['product_id']; |
|---|
| 26 | |
|---|
| 27 | if($product_id != ""){ |
|---|
| 28 | //¾¦Éʾܺ٤ò¼èÆÀ |
|---|
| 29 | $arrProduct = lfGetProductsDetail($objQuery, $product_id); |
|---|
| 30 | |
|---|
| 31 | // ÃͤΥ»¥Ã¥È¤·Ä¾¤· |
|---|
| 32 | foreach($arrProduct as $key => $val){ |
|---|
| 33 | |
|---|
| 34 | // ²èÁü¥Õ¥¡¥¤¥ë¤ÎURL¥»¥Ã¥È |
|---|
| 35 | (file_exists(IMAGE_SAVE_URL . $arrProduct[$key]["main_list_image"])) ? $dir = IMAGE_TEMP_DIR : $dir = IMAGE_TEMP_URL; |
|---|
| 36 | $arrProduct[$key]["main_list_image"] = $dir . $arrProduct[$key]["main_list_image"]; |
|---|
| 37 | (file_exists(IMAGE_SAVE_URL . $arrProduct[$key]["main_image"])) ? $dir = IMAGE_SAVE_URL : $dir = IMAGE_TEMP_URL; |
|---|
| 38 | $arrProduct[$key]["main_image"] = IMAGE_SAVE_URL . $arrProduct[$key]["main_image"]; |
|---|
| 39 | (file_exists(IMAGE_SAVE_URL . $arrProduct[$key]["main_large_image"])) ? $dir = IMAGE_SAVE_URL : $dir = IMAGE_TEMP_URL; |
|---|
| 40 | $arrProduct[$key]["main_large_image"] = IMAGE_SAVE_URL . $arrProduct[$key]["main_large_image"]; |
|---|
| 41 | } |
|---|
| 42 | |
|---|
| 43 | sfprintr($arrProduct);exit(); |
|---|
| 44 | }else{ |
|---|
| 45 | //¾¦ÉʰìÍ÷¤ò¼èÆÀ |
|---|
| 46 | $arrProduct = $objQuery->getall("SELECT product_id, name AS product_name FROM dtb_products"); |
|---|
| 47 | } |
|---|
| 48 | |
|---|
| 49 | //ŹÊÞ¾ðÊó¤ò¥»¥Ã¥È |
|---|
| 50 | $objPage->arrSiteInfo = $objSiteInfo->data; |
|---|
| 51 | |
|---|
| 52 | //¾¦ÉʾðÊó¤ò¥»¥Ã¥È |
|---|
| 53 | $objPage->arrProduct = $arrProduct; |
|---|
| 54 | $objPage->arrProductKeys = array_keys(sfswaparray($arrProduct)); |
|---|
| 55 | |
|---|
| 56 | //¥»¥Ã¥È¤·¤¿¥Ç¡¼¥¿¤ò¥Æ¥ó¥×¥ì¡¼¥È¥Õ¥¡¥¤¥ë¤Ë½ÐÎÏ |
|---|
| 57 | $objView->assignobj($objPage); |
|---|
| 58 | |
|---|
| 59 | //¥¥ã¥Ã¥·¥å¤·¤Ê¤¤(ǰ¤Î¤¿¤á) |
|---|
| 60 | header("Paragrama: no-cache"); |
|---|
| 61 | |
|---|
| 62 | //XML¥Æ¥¥¹¥È(¤³¤ì¤¬¤Ê¤¤¤ÈÀµ¾ï¤ËRSS¤È¤·¤ÆÇ§¼±¤·¤Æ¤¯¤ì¤Ê¤¤¥Ä¡¼¥ë¤¬¤¢¤ë¤¿¤á) |
|---|
| 63 | header("Content-type: application/xml"); |
|---|
| 64 | DETAIL_P_HTML; |
|---|
| 65 | |
|---|
| 66 | //²èÌÌɽ¼¨ |
|---|
| 67 | $objView->display($objPage->tpl_mainpage, true); |
|---|
| 68 | |
|---|
| 69 | //--------------------------------------------------------------------------------------------------------------------- |
|---|
| 70 | /************************************************************************************************************** |
|---|
| 71 | * ´Ø¿ô̾:lfGetProducts |
|---|
| 72 | * ÀâÌÀ¡¡:¾¦ÉʾðÊó¤ò¼èÆÀ¤¹¤ë |
|---|
| 73 | * °ú¿ô£±:$objQuery DBÁàºî¥¯¥é¥¹ |
|---|
| 74 | * °ú¿ô£²:$product_id ¾¦ÉÊID |
|---|
| 75 | * Ìá¤êÃÍ:$arrProduct ¼èÆÀ·ë²Ì¤òÇÛÎó¤ÇÊÖ¤¹ |
|---|
| 76 | **************************************************************************************************************/ |
|---|
| 77 | function lfGetProductsDetail($objQuery, $product_id){ |
|---|
| 78 | $sql = ""; |
|---|
| 79 | $sql .= "SELECT "; |
|---|
| 80 | $sql .= " prod.product_id "; |
|---|
| 81 | $sql .= " ,prod.name AS product_name "; |
|---|
| 82 | $sql .= " ,prod.category_id "; |
|---|
| 83 | $sql .= " ,prod.point_rate "; |
|---|
| 84 | $sql .= " ,prod.comment3 "; |
|---|
| 85 | $sql .= " ,prod.main_list_comment "; |
|---|
| 86 | $sql .= " ,prod.main_list_image "; |
|---|
| 87 | $sql .= " ,prod.main_comment "; |
|---|
| 88 | $sql .= " ,prod.main_image "; |
|---|
| 89 | $sql .= " ,prod.main_large_image "; |
|---|
| 90 | $sql .= " ,cls.price01 "; |
|---|
| 91 | $sql .= " ,cls.price02 "; |
|---|
| 92 | $sql .= " ,cls.classcategory_id1 "; |
|---|
| 93 | $sql .= " ,cls.classcategory_id2 "; |
|---|
| 94 | $sql .= " ,(SELECT name FROM dtb_classcategory AS clscat WHERE clscat.classcategory_id = cls.classcategory_id1) AS classcategory_name1 "; |
|---|
| 95 | $sql .= " ,(SELECT name FROM dtb_classcategory AS clscat WHERE clscat.classcategory_id = cls.classcategory_id2) AS classcategory_name2 "; |
|---|
| 96 | $sql .= " ,(SELECT category_name FROM dtb_category AS cat WHERE cat.category_id = prod.category_id) AS category_name"; |
|---|
| 97 | $sql .= " FROM dtb_products AS prod, dtb_products_class AS cls"; |
|---|
| 98 | $sql .= " WHERE prod.product_id = cls.product_id AND prod.del_flg = 0 AND prod.status = 1"; |
|---|
| 99 | |
|---|
| 100 | if($product_id != "ALL"){ |
|---|
| 101 | $sql .= " AND prod.product_id = ?"; |
|---|
| 102 | $arrval = array($product_id); |
|---|
| 103 | } |
|---|
| 104 | $sql .= " ORDER BY prod.product_id, cls.classcategory_id1, cls.classcategory_id2"; |
|---|
| 105 | $arrProduct = $objQuery->getall($sql, $arrval); |
|---|
| 106 | return $arrProduct; |
|---|
| 107 | } |
|---|
| 108 | |
|---|
| 109 | ?> |
|---|