Ignore:
Timestamp:
2007/12/13 11:59:18 (19 years ago)
Author:
satou
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/beta/data/downloads/module/mdl_paygent/paygent_bank.php

    r16795 r16909  
    1010    function LC_Page() { 
    1111        /** ɬ¤º»ØÄꤹ¤ë **/ 
    12         $this->tpl_mainpage = MODULE_PATH . 'mdl_paygent/paygent_bank.tpl';     // ¥á¥¤¥ó¥Æ¥ó¥×¥ì¡¼¥È 
     12        if (GC_MobileUserAgent::isMobile()) { 
     13            $this->tpl_mainpage = MODULE_PATH . "mdl_paygent/paygent_bank_mobile.tpl"; 
     14        } else { 
     15            $this->tpl_mainpage = MODULE_PATH . "mdl_paygent/paygent_bank.tpl"; 
     16        } 
    1317        /* 
    1418         session_start»þ¤Îno-cache¥Ø¥Ã¥À¡¼¤òÍÞÀ©¤¹¤ë¤³¤È¤Ç 
     
    2125 
    2226$objPage = new LC_Page(); 
    23 $objView = new SC_SiteView(); 
     27if (GC_MobileUserAgent::isMobile()) { 
     28    $objView = new SC_MobileView(); 
     29} else { 
     30    $objView = new SC_SiteView(); 
     31} 
    2432$objCampaignSess = new SC_CampaignSession(); 
    2533$objCustomer = new SC_Customer(); 
    2634$objSiteInfo = $objView->objSiteInfo; 
    2735$arrInfo = $objSiteInfo->data; 
    28  
    29 if (GC_MobileUserAgent::isMobile()) { 
    30     sfDispSiteError(FREE_ERROR_MSG, "", false, "¶ä¹Ô¥Í¥Ã¥È·èºÑ¤Ï¡¢¤´»ÈÍѤε¡¼ï¤Ë¤ÏÂбþ¤·¤Æ¤ª¤ê¤Þ¤»¤ó¡£", true); 
    31     exit; 
    32 } 
    3336 
    3437// ¥Ñ¥é¥á¡¼¥¿´ÉÍý¥¯¥é¥¹ 
     
    5760    // Àµ¾ï¤Ê¿ä°Ü¤Ç¤¢¤ë¤³¤È¤òµ­Ï¿¤·¤Æ¤ª¤¯ 
    5861    $objSiteSess->setRegistFlag(); 
    59     header("Location: " . URL_SHOP_CONFIRM); 
    60     exit; 
     62    if (GC_MobileUserAgent::isMobile()) { 
     63        header("Location: " . gfAddSessionId(MOBILE_URL_SHOP_CONFIRM)); 
     64    } else { 
     65        header("Location: " . URL_SHOP_CONFIRM); 
     66    } 
    6167    break; 
    6268// ¼¡¤Ø 
     
    506512} 
    507513 
    508 ?>?> 
     514?> 
Note: See TracChangeset for help on using the changeset viewer.