Ignore:
Timestamp:
2013/05/02 18:11:36 (11 years ago)
Author:
h_yoshimoto
Message:

#2236 2.12.3リリース以降の2.12-devへのコミット差し戻し

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-dev/data/class/pages/frontparts/bloc/LC_Page_FrontParts_Bloc_SearchProducts.php

    r22567 r22796  
    3232 * @version $Id:LC_Page_FrontParts_Bloc_SearchProducts.php 15532 2007-08-31 14:39:46Z nanasess $ 
    3333 */ 
    34 class LC_Page_FrontParts_Bloc_SearchProducts extends LC_Page_FrontParts_Bloc_Ex  
    35 { 
     34class LC_Page_FrontParts_Bloc_SearchProducts extends LC_Page_FrontParts_Bloc_Ex { 
    3635 
    3736    // }}} 
     
    4342     * @return void 
    4443     */ 
    45     function init() 
    46     { 
     44    function init() { 
    4745        parent::init(); 
    4846    } 
     
    5351     * @return void 
    5452     */ 
    55     function process() 
    56     { 
     53    function process() { 
    5754        $this->action(); 
    5855        $this->sendResponse(); 
     
    6461     * @return void 
    6562     */ 
    66     function action() 
    67     { 
     63    function action() { 
    6864 
    6965        // 商品ID取得 
     
    9086     * @return void 
    9187     */ 
    92     function destroy() 
    93     { 
     88    function destroy() { 
    9489        parent::destroy(); 
    9590    } 
     
    10095     * @return string $product_id 商品ID 
    10196     */ 
    102     function lfGetProductId() 
    103     { 
     97    function lfGetProductId() { 
    10498        $product_id = ''; 
    10599        if (isset($_GET['product_id']) && $_GET['product_id'] != '' && is_numeric($_GET['product_id'])) { 
     
    114108     * @return string $category_id カテゴリID 
    115109     */ 
    116     function lfGetCategoryId() 
    117     { 
     110    function lfGetCategoryId() { 
    118111        $category_id = ''; 
    119112        if (isset($_GET['category_id']) && $_GET['category_id'] != '' && is_numeric($_GET['category_id'])) { 
     
    128121     * @return string $maker_id メーカーID 
    129122     */ 
    130     function lfGetMakerId() 
    131     { 
     123    function lfGetMakerId() { 
    132124        $maker_id = ''; 
    133125        if (isset($_GET['maker_id']) && $_GET['maker_id'] != '' && is_numeric($_GET['maker_id'])) { 
     
    142134     * @return array $arrCategoryId 選択中のカテゴリID 
    143135     */ 
    144     function lfGetSelectedCategoryId($product_id, $category_id) 
    145     { 
     136    function lfGetSelectedCategoryId($product_id, $category_id) { 
    146137        // 選択中のカテゴリIDを判定する 
    147138        $objDb = new SC_Helper_DB_Ex(); 
     
    155146     * @return array $arrMakerId 選択中のメーカーID 
    156147     */ 
    157     function lfGetSelectedMakerId($product_id, $maker_id) 
    158     { 
     148    function lfGetSelectedMakerId($product_id, $maker_id) { 
    159149        // 選択中のメーカーIDを判定する 
    160150        $objDb = new SC_Helper_DB_Ex(); 
     
    168158     * @return array $arrCategoryList カテゴリ検索用選択リスト 
    169159     */ 
    170     function lfGetCategoryList() 
    171     { 
     160    function lfGetCategoryList() { 
    172161        $objDb = new SC_Helper_DB_Ex(); 
    173162        // カテゴリ検索用選択リスト 
     
    188177     * @return array $arrMakerList メーカー検索用選択リスト 
    189178     */ 
    190     function lfGetMakerList() 
    191     { 
     179    function lfGetMakerList() { 
    192180        $objDb = new SC_Helper_DB_Ex(); 
    193181        // メーカー検索用選択リスト 
Note: See TracChangeset for help on using the changeset viewer.