Changeset 18396
- Timestamp:
- 2009/11/26 16:56:31 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/comu-ver2/data/class/pages/products/LC_Page_Products_List.php
r18288 r18396 103 103 $count = $objQuery->count("dtb_best_products", "category_id = ?", array($this->arrSearchData['category_id'])); 104 104 105 105 // 商品一覧の表示処理 106 106 $this->lfDispProductsList(); 107 107 108 109 108 // 検索条件を画面に表示 109 // カテゴリー検索条件 110 110 if ($this->arrSearchData['category_id'] == 0) { 111 111 $this->arrSearch['category'] = "指定なし"; … … 113 113 $arrCat = $conn->getOne("SELECT category_name FROM dtb_category WHERE category_id = ?", array($this->arrSearchData['category_id'])); 114 114 $this->arrSearch['category'] = $arrCat; 115 116 117 115 } 116 117 // メーカー検索条件 118 118 if (strlen($this->arrSearchData['maker_id']) == 0) { 119 119 $this->arrSearch['maker'] = "指定なし"; 120 120 } else { 121 $this->arrSearch['maker'] = $ name = $conn->getOne("SELECT name FROM dtb_maker WHERE maker_id = ?", $this->arrSearchData['maker_id']);122 123 124 121 $this->arrSearch['maker'] = $conn->getOne("SELECT name FROM dtb_maker WHERE maker_id = ?", $this->arrSearchData['maker_id']); 122 } 123 124 // 商品名検索条件 125 125 if (strlen($this->arrSearchData['name']) == 0) { 126 126 $this->arrSearch['name'] = "指定なし"; 127 127 } else { 128 128 $this->arrSearch['name'] = $this->arrSearchData['name']; 129 129 } 130 130 131 131 // レイアウトデザインを取得
Note: See TracChangeset
for help on using the changeset viewer.