Changeset 20448


Ignore:
Timestamp:
2011/02/28 20:31:14 (13 years ago)
Author:
shutta
Message:

SC_SiteSessionクラスのclass_extends対応。

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

Legend:

Unmodified
Added
Removed
  • branches/version-2_5-dev/data/class/SC_Customer.php

    r20428 r20448  
    214214        // トランザクショントークンの破棄 
    215215        SC_Helper_Session_Ex::destroyToken(); 
    216         $objSiteSess = new SC_SiteSession(); 
     216        $objSiteSess = new SC_SiteSession_Ex(); 
    217217        $objSiteSess->unsetUniqId(); 
    218218        // ログに記録する 
  • branches/version-2_5-dev/data/class/helper/SC_Helper_Purchase.php

    r20444 r20448  
    5656    function completeOrder($orderStatus = ORDER_NEW) { 
    5757        $objQuery =& SC_Query::getSingletonInstance(); 
    58         $objSiteSession = new SC_SiteSession(); 
     58        $objSiteSession = new SC_SiteSession_Ex(); 
    5959        $objCartSession = new SC_CartSession_Ex(); 
    6060        $objCustomer = new SC_Customer(); 
     
    118118             *(ユニークIDがPOSTされていない場合はスルー) 
    119119             */ 
    120             if(!SC_SiteSession::checkUniqId()) { 
     120            if(!SC_SiteSession_Ex::checkUniqId()) { 
    121121                SC_Utils_Ex::sfDispSiteError(CANCEL_PURCHASE); 
    122122                exit; 
     
    676676        $objQuery->update("dtb_order_temp", array('del_flg' => 1), 
    677677                          "order_temp_id = ?", 
    678                           array(SC_SiteSession::getUniqId())); 
     678                          array(SC_SiteSession_Ex::getUniqId())); 
    679679 
    680680        $objCartSession->delAllProducts($cartKey); 
    681         SC_SiteSession::unsetUniqId(); 
     681        SC_SiteSession_Ex::unsetUniqId(); 
    682682        return $orderParams['order_id']; 
    683683    } 
  • branches/version-2_5-dev/data/class/pages/cart/LC_Page_Cart.php

    r20444 r20448  
    7777    function action() { 
    7878        $objCartSess = new SC_CartSession_Ex(); 
    79         $objSiteSess = new SC_SiteSession(); 
     79        $objSiteSess = new SC_SiteSession_Ex(); 
    8080        $objCustomer = new SC_Customer(); 
    8181 
  • branches/version-2_5-dev/data/class/pages/shopping/LC_Page_Shopping.php

    r20444 r20448  
    7676     */ 
    7777    function action() { 
    78         $objSiteSess = new SC_SiteSession(); 
     78        $objSiteSess = new SC_SiteSession_Ex(); 
    7979        $objCartSess = new SC_CartSession_Ex(); 
    8080        $objCustomer = new SC_Customer(); 
  • branches/version-2_5-dev/data/class/pages/shopping/LC_Page_Shopping_Confirm.php

    r20444 r20448  
    7272    function action() { 
    7373        $objCartSess = new SC_CartSession_Ex(); 
    74         $objSiteSess = new SC_SiteSession(); 
     74        $objSiteSess = new SC_SiteSession_Ex(); 
    7575        $objCustomer = new SC_Customer(); 
    7676        $objQuery = new SC_Query(); 
  • branches/version-2_5-dev/data/class/pages/shopping/LC_Page_Shopping_Deliv.php

    r20444 r20448  
    6666     */ 
    6767    function action() { 
    68         $objSiteSess = new SC_SiteSession(); 
     68        $objSiteSess = new SC_SiteSession_Ex(); 
    6969        $objCartSess = new SC_CartSession_Ex(); 
    7070        $objCustomer = new SC_Customer(); 
  • branches/version-2_5-dev/data/class/pages/shopping/LC_Page_Shopping_LoadPaymentModule.php

    r20444 r20448  
    5252     */ 
    5353    function process() { 
    54         $objSiteSess = new SC_SiteSession(); 
     54        $objSiteSess = new SC_SiteSession_Ex(); 
    5555        $objCartSess = new SC_CartSession_Ex(); 
    5656        $objPurchase = new SC_Helper_Purchase_Ex(); 
  • branches/version-2_5-dev/data/class/pages/shopping/LC_Page_Shopping_Multiple.php

    r20444 r20448  
    6464     */ 
    6565    function action() { 
    66         $objSiteSess = new SC_SiteSession(); 
     66        $objSiteSess = new SC_SiteSession_Ex(); 
    6767        $objCartSess = new SC_CartSession_Ex(); 
    6868        $objPurchase = new SC_Helper_Purchase_Ex(); 
  • branches/version-2_5-dev/data/class/pages/shopping/LC_Page_Shopping_Payment.php

    r20444 r20448  
    7575     */ 
    7676    function action() { 
    77         $objSiteSess = new SC_SiteSession(); 
     77        $objSiteSess = new SC_SiteSession_Ex(); 
    7878        $objCartSess = new SC_CartSession_Ex(); 
    7979        $objPurchase = new SC_Helper_Purchase_Ex(); 
  • branches/version-2_5-dev/data/require_classes.php

    r20444 r20448  
    4545require_once(CLASS_REALDIR . "SC_FormParam.php"); 
    4646require_once(CLASS_EX_REALDIR . "SC_CartSession_Ex.php"); 
    47 require_once(CLASS_REALDIR . "SC_SiteSession.php"); 
     47require_once(CLASS_EX_REALDIR . "SC_SiteSession_Ex.php"); 
    4848require_once(CLASS_REALDIR . "SC_Customer.php"); 
    4949require_once(CLASS_REALDIR . "SC_CustomerList.php"); 
Note: See TracChangeset for help on using the changeset viewer.