Source for file LC_Page_Mypage_Delivery.php
Documentation is available at LC_Page_Mypage_Delivery.php
* This file is part of EC-CUBE
* Copyright(c) 2000-2011 LOCKON CO.,LTD. All Rights Reserved.
* http://www.lockon.co.jp/
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
require_once CLASS_EX_REALDIR . 'page_extends/mypage/LC_Page_AbstractMypage_Ex.php';
* @author LOCKON CO.,LTD.
* @version $Id: LC_Page_Mypage_Delivery.php 21103 2011-08-02 20:10:38Z 468 $
$this->tpl_subtitle = 'お届け先追加・変更';
$this->tpl_mypageno = 'delivery';
$masterData = new SC_DB_MasterData_Ex();
$this->arrPref = $masterData->getMasterData('mtb_pref');
$this->httpCacheControl('nocache');
$objCustomer = new SC_Customer_Ex();
$customer_id = $objCustomer->getValue('customer_id');
$objFormParam = new SC_FormParam_Ex();
$objFormParam->setParam($_POST);
$objFormParam->convParam();
switch($this->getMode()) {
if ($objFormParam->checkError()) {
SC_Utils_Ex::sfDispSiteError(CUSTOMER_ERROR);
$this->deleteOtherDeliv($customer_id, $objFormParam->getValue('other_deliv_id'));
$arrData = $objFormParam->getHashArray();
$arrOtherDeliv = $this->getOtherDeliv($customer_id, (($arrData['pageno'] - 1) * SEARCH_PMAX));
$arrOtherDeliv = $this->setPref($arrOtherDeliv, $this->arrPref);
$arrOtherDeliv['delivCount'] = count($arrOtherDeliv);
$this->arrOtherDeliv = $arrOtherDeliv;
echo SC_Utils_Ex::jsonEncode($this->arrOtherDeliv);
$this->tpl_linemax = count($this->arrOtherDeliv);
$this->dispNumber = SEARCH_PMAX;
$objFormParam->addParam('お届け先ID', 'other_deliv_id', INT_LEN, '', array('EXIST_CHECK', 'NUM_CHECK', 'MAX_LENGTH_CHECK'));
$objFormParam->addParam("現在ページ", "pageno", INT_LEN, 'n', array("NUM_CHECK", "MAX_LENGTH_CHECK"), "", false);
* @param integer $customerId
* @param integer $startno
$objQuery = & SC_Query_Ex::getSingletonInstance();
$objQuery->setOrder('other_deliv_id DESC');
$objQuery->setLimitOffset(SEARCH_PMAX, $startno);
return $objQuery->select('*', 'dtb_other_deliv', 'customer_id = ?', array($customer_id));
* @param integer $customerId
* @param integer $delivId
$where = 'customer_id = ? AND other_deliv_id = ?';
$objQuery = & SC_Query_Ex::getSingletonInstance();
$objQuery->delete("dtb_other_deliv", $where, array($customer_id, $deliv_id));
* @param array $arrOtherDeliv
function setPref($arrOtherDeliv, $arrPref) {
foreach($arrOtherDeliv as $key => $arrDeliv) {
$arrOtherDeliv[$key]['prefname'] = $arrPref[$arrDeliv['pref']];
Documentation generated on Fri, 24 Feb 2012 14:02:05 +0900 by Seasoft
|