Source for file LC_Page_FrontParts_Bloc_Login.php

Documentation is available at LC_Page_FrontParts_Bloc_Login.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_Login.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 'login.tpl';
  46.         $this->setTplMainpage($bloc_file);
  47.         $this->tpl_login false;
  48.         $this->tpl_disable_logout false;
  49.     }
  50.  
  51.     /**
  52.      * Page のプロセス.
  53.      *
  54.      * @return void 
  55.      */
  56.     function process({
  57.         $objCustomer new SC_Customer();
  58.         // クッキー管理クラス
  59.         $objCookie new SC_Cookie(COOKIE_EXPIRE);
  60.  
  61.         // ログイン判定
  62.         if($objCustomer->isLoginSuccess()) {
  63.             $this->tpl_login true;
  64.             $this->tpl_user_point $objCustomer->getValue('point');
  65.             $this->tpl_name1 $objCustomer->getValue('name01');
  66.             $this->tpl_name2 $objCustomer->getValue('name02');
  67.         else {
  68.             // クッキー判定
  69.             $this->tpl_login_email = $objCookie->getCookie('login_email');
  70.             if($this->tpl_login_email != ""{
  71.                 $this->tpl_login_memory "1";
  72.             }
  73.  
  74.             // POSTされてきたIDがある場合は優先する。
  75.             if($_POST['login_email'!= ""{
  76.                 $this->tpl_login_email = $_POST['login_email'];
  77.             }
  78.         }
  79.  
  80.         $this->tpl_disable_logout $this->lfCheckDisableLogout();
  81.         $objSubView new SC_SiteView();
  82.         $this->transactionid = $this->getToken();
  83.         $objSubView->assignobj($this);
  84.         $objSubView->display($this->tpl_mainpage);
  85.     }
  86.  
  87.     /**
  88.      * デストラクタ.
  89.      *
  90.      * @return void 
  91.      */
  92.     function destroy({
  93.         parent::destroy();
  94.     }
  95.  
  96.     function lfCheckDisableLogout({
  97.         $masterData new SC_DB_MasterData_Ex();
  98.         $arrDISABLE_LOGOUT $masterData->getMasterData("mtb_disable_logout");
  99.         $nowpage $_SERVER['PHP_SELF'];
  100.  
  101.         foreach($arrDISABLE_LOGOUT as $val{
  102.             if($nowpage == $val{
  103.                 return true;
  104.             }
  105.          }
  106.         return false;
  107.     }
  108. }
  109. ?>

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