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-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/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.         $bloc_file 'cart.tpl';
  46.         $this->setTplMainpage($bloc_file);
  47.     }
  48.  
  49.     /**
  50.      * Page のプロセス.
  51.      *
  52.      * @return void 
  53.      */
  54.     function process({
  55.         $objSubView new SC_SiteView();
  56.         $objCart new SC_CartSession();
  57.         $objSiteInfo new SC_SiteInfo;
  58.  
  59.         if (count($_SESSION[$objCart->key]0){
  60.             // カート情報を取得
  61.             $arrCartList $objCart->getCartList();
  62.  
  63.             // カート内の商品ID一覧を取得
  64.             $arrAllProductID $objCart->getAllProductID();
  65.             // 商品が1つ以上入っている場合には商品名称を取得
  66.             if (count($arrAllProductID0){
  67.                 $objQuery new SC_Query();
  68.                 $arrVal array();
  69.                 $sql "";
  70.                 $sql "SELECT name FROM dtb_products WHERE product_id IN ( ?";
  71.                 $arrVal array($arrAllProductID[0]);
  72.                 for($i $i count($arrAllProductID$i++){
  73.                     $sql.= " ,? ";
  74.                     array_push($arrVal$arrAllProductID[$i]);
  75.                 }
  76.                 $sql.= " )";
  77.  
  78.                 $arrProduct_name $objQuery->getAll($sql$arrVal);
  79.  
  80.                 foreach($arrProduct_name as $key => $val){
  81.                     $arrCartList[$key]['product_name'$val['name'];
  82.                 }
  83.             }
  84.             // 店舗情報の取得
  85.             $arrInfo $objSiteInfo->data;
  86.             // 購入金額合計
  87.             $ProductsTotal $objCart->getAllProductsTotal($arrInfo);
  88.  
  89.             // 合計数量
  90.             $TotalQuantity $objCart->getTotalQuantity();
  91.  
  92.             // 送料無料までの金額
  93.             $arrCartList[0]['ProductsTotal'$ProductsTotal;
  94.             $arrCartList[0]['TotalQuantity'$TotalQuantity;
  95.             $deliv_free $arrInfo['free_rule'$ProductsTotal;
  96.             $arrCartList[0]['free_rule'$arrInfo['free_rule'];
  97.             $arrCartList[0]['deliv_free'$deliv_free;
  98.  
  99.             $this->arrCartList $arrCartList;
  100.         }
  101.  
  102.         $objSubView->assignobj($this);
  103.         $objSubView->display($this->tpl_mainpage);
  104.     }
  105.  
  106.     /**
  107.      * デストラクタ.
  108.      *
  109.      * @return void 
  110.      */
  111.     function destroy({
  112.         parent::destroy();
  113.     }
  114. }
  115. ?>

Documentation generated on Tue, 28 Apr 2009 18:12:13 +0900 by phpDocumentor 1.4.2