source: branches/feature-module-update/html/frontparts/bloc/search_products.php @ 15078

Revision 15078, 1.0 KB checked in by nanasess, 17 years ago (diff)

r15064 から svn cp
とりあえず暫定コミット.

  • UTF-8 に変更
  • slib.php, glib.php のクラス化
  • LC_Page の抽象化(一部)
RevLine 
[12157]1<?php
2/*
3 * Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved.
4 *
5 * http://www.lockon.co.jp/
6 */
7class LC_SearchProductsPage {
8    function LC_SearchProductsPage() {
[15078]9        /** 必ず変更する **/
10        $this->tpl_mainpage = BLOC_PATH . 'search_products.tpl';    // メイン
[12157]11    }
12}
13
14$objSubPage = new LC_SearchProductsPage();
[15078]15$arrSearch = array();   // 検索項目表示用
[12157]16
[15078]17// 選択中のカテゴリIDを判定する
[12157]18$objSubPage->category_id = sfGetCategoryId($_GET['product_id'], $_GET['category_id']);
[15078]19// カテゴリ検索用選択リスト
20$arrRet = sfGetCategoryList('', true, ' ');
[12157]21
22if(is_array($arrRet)) {
[15078]23    // 文字サイズを制限する
[12157]24    foreach($arrRet as $key => $val) {
25        $arrRet[$key] = sfCutString($val, SEARCH_CATEGORY_LEN);
26    }
27}
28$objSubPage->arrCatList = $arrRet;
29
30$objSubView = new SC_SiteView();
31$objSubView->assignobj($objSubPage);
32$objSubView->display($objSubPage->tpl_mainpage);
33//-----------------------------------------------------------------------------------------------------------------------------------
34?>
Note: See TracBrowser for help on using the repository browser.