Page
[ class tree: Page ] [ index: Page ] [ all elements ]

Source for file LC_Page_FrontParts_Bloc_Cart.php

Documentation is available at LC_Page_FrontParts_Bloc_Cart.php

  1. <?php
  2. /*
  3.  * This file is part of EC-CUBE
  4.  *
  5.  * Copyright(c) 2000-2011 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_REALDIR 'pages/frontparts/bloc/LC_Page_FrontParts_Bloc.php';
  26.  
  27. /**
  28.  * カート のページクラス.
  29.  *
  30.  * @package Page
  31.  * @author LOCKON CO.,LTD.
  32.  * @version $Id:LC_Page_FrontParts_Bloc_Cart.php 15532 2007-08-31 14:39:46Z nanasess $
  33.  */
  34.  
  35.     // }}}
  36.     // {{{ functions
  37.  
  38.     /**
  39.      * Page を初期化する.
  40.      *
  41.      * @return void 
  42.      */
  43.     function init({
  44.         parent::init();
  45.         $masterData new SC_DB_MasterData_Ex();
  46.         $this->arrProductType $masterData->getMasterData("mtb_product_type")//商品種類を取得
  47.     }
  48.  
  49.     /**
  50.      * Page のプロセス.
  51.      *
  52.      * @return void 
  53.      */
  54.     function process({
  55.         $this->action();
  56.         $this->sendResponse();
  57.     }
  58.  
  59.     /**
  60.      * Page のアクション.
  61.      *
  62.      * @return void 
  63.      */
  64.     function action({
  65.         $objCart new SC_CartSession_Ex();
  66.         $this->isMultiple $objCart->isMultiple();
  67.         $this->hasDownload $objCart->hasProductType(PRODUCT_TYPE_DOWNLOAD);
  68.         $this->arrCartList $this->lfGetCartData($objCart);
  69.     }
  70.  
  71.     /**
  72.      * デストラクタ.
  73.      *
  74.      * @return void 
  75.      */
  76.     function destroy({
  77.         parent::destroy();
  78.     }
  79.  
  80.     /**
  81.      * カートの情報を取得する
  82.      *
  83.      * @param SC_CartSession $objCart カートセッション管理クラス
  84.      * @return array $arrCartList カートデータ配列
  85.      */
  86.     function lfGetCartData(&$objCart{
  87.         $arrCartKeys $objCart->getKeys();
  88.         foreach ($arrCartKeys as $cart_key{
  89.             // カート情報を取得
  90.             $arrCartList $objCart->getCartList($cart_key);
  91.             // カート内の商品ID一覧を取得
  92.             $arrAllProductID $objCart->getAllProductID($cart_key);
  93.             // 商品が1つ以上入っている場合には商品名称を取得
  94.             if (count($arrCartList0){
  95.  
  96.                 foreach($arrCartList['productsClass'as $key => $val){
  97.                     $arrCartList[$key]['product_name'$val['name'];
  98.                 }
  99.             }
  100.             // 購入金額合計
  101.             $products_total += $objCart->getAllProductsTotal($cart_key);
  102.             // 合計数量
  103.             $total_quantity += $objCart->getTotalQuantity($cart_key);
  104.  
  105.             // 送料無料チェック
  106.             if (!$this->isMultiple && !$this->hasDownload{
  107.                 $is_deliv_free $objCart->isDelivFree($cart_key);
  108.             }
  109.         }
  110.  
  111.         $arrCartList[0]['ProductsTotal'$products_total;
  112.         $arrCartList[0]['TotalQuantity'$total_quantity;
  113.  
  114.         // 店舗情報の取得
  115.         $arrInfo SC_Helper_DB_Ex::sfGetBasisData();
  116.         $arrCartList[0]['free_rule'$arrInfo['free_rule'];
  117.  
  118.         // 送料無料までの金額
  119.         if ($is_deliv_free{
  120.             $arrCartList[0]['deliv_free'0;
  121.         else {
  122.             $deliv_free $arrInfo['free_rule'$products_total;
  123.             $arrCartList[0]['deliv_free'$deliv_free;
  124.         }
  125.  
  126.         return $arrCartList;
  127.     }
  128. }
  129. ?>

Documentation generated on Fri, 24 Feb 2012 14:01:59 +0900 by Seasoft