Source for file LC_Page_Admin_Contents_RecommendSearch.php

Documentation is available at LC_Page_Admin_Contents_RecommendSearch.php

  1. <?php
  2. /*
  3.  * This file is part of EC-CUBE
  4.  *
  5.  * Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved.
  6.  *
  7.  * http://www.lockon.co.jp/
  8.  *
  9.  * This program is free software; you can redistribute it and/or
  10.  * modify it under the terms of the GNU General Public License
  11.  * as published by the Free Software Foundation; either version 2
  12.  * of the License, or (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  22.  */
  23.  
  24. // {{{ requires
  25. require_once(CLASS_PATH "pages/LC_Page.php");
  26.  
  27. /**
  28.  * おすすめ商品管理 商品検索のページクラス.
  29.  *
  30.  * @package Page
  31.  * @author LOCKON CO.,LTD.
  32.  * @version $Id$
  33.  */
  34.  
  35.     // }}}
  36.     // {{{ functions
  37.  
  38.     /**
  39.      * Page を初期化する.
  40.      *
  41.      * @return void 
  42.      */
  43.     function init({
  44.         parent::init();
  45.         $this->tpl_mainpage = 'contents/recomend_search.tpl';
  46.         $this->tpl_mainno = 'contents';
  47.         $this->tpl_subnavi '';
  48.         $this->tpl_subno "";
  49.  
  50.     }
  51.  
  52.     /**
  53.      * Page のプロセス.
  54.      *
  55.      * @return void 
  56.      */
  57.     function process({
  58.         $conn new SC_DBConn();
  59.         $objView new SC_AdminView();
  60.         $objSess new SC_Session();
  61.         $objDb new SC_Helper_DB_Ex();
  62.  
  63.         // 認証可否の判定
  64.         SC_Utils_Ex::sfIsSuccess($objSess);
  65.  
  66.         if (!isset($_POST['mode'])) $_POST['mode'"";
  67.         if ($_POST['mode'== "search"{
  68.  
  69.             // POST値の引き継ぎ
  70.             $this->arrForm $_POST;
  71.             // 入力文字の強制変換
  72.             $this->lfConvertParam();
  73.  
  74.             $where "del_flg = 0 AND status = 1";
  75.  
  76.             /* 入力エラーなし */
  77.             foreach ($this->arrForm as $key => $val{
  78.                 if($val == ""{
  79.                     continue;
  80.                 }
  81.  
  82.                 switch ($key{
  83.                 case 'search_name':
  84.                     $where .= " AND name ILIKE ?";
  85.                     $arrval["%$val%";
  86.                     break;
  87.                 case 'search_category_id':
  88.                      list($tmp_where$tmp_arrval$objDb->sfGetCatWhere($val);
  89.                     if($tmp_where != ""{
  90.                         $where.= " AND product_id IN (SELECT product_id FROM dtb_product_categories WHERE " $tmp_where ")";
  91.                         $arrval array_merge((array)$arrval(array)$tmp_arrval);
  92.                     }
  93.                     break;
  94.                 case 'search_product_code':
  95.                     $where .= " AND product_id IN (SELECT product_id FROM dtb_products_class WHERE product_code LIKE ? GROUP BY product_id)";
  96.                     $arrval["$val%";
  97.                     break;
  98.                 default:
  99.                     break;
  100.                 }
  101.             }
  102.  
  103.             $order "update_date DESC, product_id DESC";
  104.  
  105.             // 読み込む列とテーブルの指定
  106.             $col "product_id, name, category_id, main_list_image, status, product_code, price01, stock, stock_unlimited";
  107.             $from "vw_products_nonclass AS noncls ";
  108.  
  109.             $objQuery new SC_Query();
  110.             // 行数の取得
  111.             if (empty($arrval)) $arrval array();
  112.             $linemax $objQuery->count("dtb_products"$where$arrval);
  113.             $this->tpl_linemax $linemax;               // 何件が該当しました。表示用
  114.  
  115.             // ページ送りの処理
  116.             if(isset($_POST['search_page_max'])
  117.                && is_numeric($_POST['search_page_max'])) {
  118.                 $page_max $_POST['search_page_max'];
  119.             else {
  120.                 $page_max SEARCH_PMAX;
  121.             }
  122.  
  123.             // ページ送りの取得
  124.             $objNavi new SC_PageNavi($_POST['search_pageno']$linemax$page_max"fnNaviSearchOnlyPage"NAVI_PMAX);
  125.             $this->tpl_strnavi $objNavi->strnavi;      // 表示文字列
  126.             $startno $objNavi->start_row;
  127.  
  128.             // 取得範囲の指定(開始行番号、行数のセット)
  129.             $objQuery->setlimitoffset($page_max$startno);
  130.             // 表示順序
  131.             $objQuery->setorder($order);
  132.  
  133.             // 検索結果の取得
  134.             $this->arrProducts $objQuery->select($col$from$where$arrval);
  135.         }
  136.  
  137.         // カテゴリ取得
  138.         $this->arrCatList $objDb->sfGetCategoryList();
  139.  
  140.         //---- ページ表示
  141.         $objView->assignobj($this);
  142.         $objView->display($this->tpl_mainpage);
  143.  
  144.     }
  145.  
  146.     /**
  147.      * デストラクタ.
  148.      *
  149.      * @return void 
  150.      */
  151.     function destroy({
  152.         parent::destroy();
  153.     }
  154.  
  155.     /* 取得文字列の変換 */
  156.     function lfConvertParam({
  157.         /*
  158.          *  文字列の変換
  159.          *  K :  「半角(ハンカク)片仮名」を「全角片仮名」に変換
  160.          *  C :  「全角ひら仮名」を「全角かた仮名」に変換
  161.          *  V :  濁点付きの文字を一文字に変換。"K","H"と共に使用します
  162.          *  n :  「全角」数字を「半角(ハンカク)」に変換
  163.          */
  164.         $arrConvList['search_name'"KVa";
  165.         $arrConvList['search_product_code'"KVa";
  166.  
  167.         // 文字変換
  168.         foreach ($arrConvList as $key => $val{
  169.             // POSTされてきた値のみ変換する。
  170.             if(isset($this->arrForm[$key])) {
  171.                 $this->arrForm[$keymb_convert_kana($this->arrForm[$key,$val);
  172.             }
  173.         }
  174.     }
  175. }
  176. ?>

Documentation generated on Tue, 28 Apr 2009 18:10:59 +0900 by phpDocumentor 1.4.2