Ignore:
Timestamp:
2011/03/04 21:58:48 (13 years ago)
Author:
shutta
Message:

SC_Cookieクラスのclass_extends対応

Location:
branches/version-2_5-dev/data
Files:
1 added
7 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_5-dev/data/class/pages/forgot/LC_Page_Forgot.php

    r20484 r20496  
    6666        $this->httpCacheControl('nocache'); 
    6767        // デフォルトログインアドレスロード 
    68         $objCookie = new SC_Cookie(COOKIE_EXPIRE); 
     68        $objCookie = new SC_Cookie_Ex(COOKIE_EXPIRE); 
    6969        $this->tpl_login_email = $objCookie->getCookie('login_email');         
    7070    } 
  • branches/version-2_5-dev/data/class/pages/frontparts/LC_Page_FrontParts_LoginCheck.php

    r20490 r20496  
    6868        $objCustomer = new SC_Customer_Ex(); 
    6969        // クッキー管理クラス 
    70         $objCookie = new SC_Cookie(COOKIE_EXPIRE); 
     70        $objCookie = new SC_Cookie_Ex(COOKIE_EXPIRE); 
    7171        // パラメータ管理クラス 
    7272        $objFormParam = new SC_FormParam(); 
  • branches/version-2_5-dev/data/class/pages/frontparts/bloc/LC_Page_FrontParts_Bloc_Login.php

    r20490 r20496  
    6868        $objCustomer = new SC_Customer_Ex(); 
    6969        // クッキー管理クラス 
    70         $objCookie = new SC_Cookie(COOKIE_EXPIRE); 
     70        $objCookie = new SC_Cookie_Ex(COOKIE_EXPIRE); 
    7171 
    7272        // ログイン判定 
  • branches/version-2_5-dev/data/class/pages/mypage/LC_Page_AbstractMypage.php

    r20490 r20496  
    6363        if($objCustomer->isLoginSuccess(true) === false) { 
    6464            // クッキー管理クラス 
    65             $objCookie = new SC_Cookie(COOKIE_EXPIRE); 
     65            $objCookie = new SC_Cookie_Ex(COOKIE_EXPIRE); 
    6666            // クッキー判定(メールアドレスをクッキーに保存しているか) 
    6767            $this->tpl_login_email = $objCookie->getCookie('login_email'); 
  • branches/version-2_5-dev/data/class/pages/shopping/LC_Page_Shopping.php

    r20490 r20496  
    7979        $objCartSess = new SC_CartSession_Ex(); 
    8080        $objCustomer = new SC_Customer_Ex(); 
    81         $objCookie = new SC_Cookie(); 
     81        $objCookie = new SC_Cookie_Ex(); 
    8282        $objPurchase = new SC_Helper_Purchase_Ex(); 
    8383        $objFormParam = new SC_FormParam(); 
  • branches/version-2_5-dev/data/class/pages/shopping/LC_Page_Shopping_Deliv.php

    r20490 r20496  
    7272        $objPurchase = new SC_Helper_Purchase_Ex(); 
    7373        $objFormParam = new SC_FormParam(); 
    74         $objCookie = new SC_Cookie(COOKIE_EXPIRE); 
     74        $objCookie = new SC_Cookie_Ex(COOKIE_EXPIRE); 
    7575 
    7676        $this->tpl_uniqid = $objSiteSess->getUniqId(); 
  • branches/version-2_5-dev/data/require_classes.php

    r20495 r20496  
    4747require_once(CLASS_EX_REALDIR . "SC_Customer_Ex.php"); 
    4848require_once(CLASS_EX_REALDIR . "SC_CustomerList_Ex.php"); 
    49 require_once(CLASS_REALDIR . "SC_Cookie.php"); 
     49require_once(CLASS_EX_REALDIR . "SC_Cookie_Ex.php"); 
    5050require_once(CLASS_EX_REALDIR . "SC_MobileUserAgent_Ex.php"); 
    5151require_once(CLASS_EX_REALDIR . "SC_SmartphoneUserAgent_Ex.php"); 
Note: See TracChangeset for help on using the changeset viewer.