Ignore:
Timestamp:
2011/02/21 19:26:08 (15 years ago)
Author:
shutta
Message:

SC_Viewクラス関連のclass_extends対応。

File:
1 edited

Legend:

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

    r20205 r20306  
    5757        $arrInfo = $objSiteInfo->data; 
    5858 
    59         $objMailView = new SC_SiteView(); 
     59        $objMailView = new SC_SiteView_Ex(); 
    6060        // メール本文の取得 
    6161        $objMailView->assignobj($objPage); 
     
    152152 
    153153       if(Net_UserAgent_Mobile::isMobile() === true) { 
    154             $objMailView = new SC_MobileView(); 
     154            $objMailView = new SC_MobileView_Ex(); 
    155155       } else { 
    156             $objMailView = new SC_SiteView(); 
     156            $objMailView = new SC_SiteView_Ex(); 
    157157       } 
    158158        // メール本文の取得 
     
    183183    // テンプレートを使用したメールの送信 
    184184    function sfSendTplMail($to, $tmp_subject, $tplpath, &$objPage) { 
    185         $objMailView = new SC_SiteView(); 
     185        $objMailView = new SC_SiteView_Ex(); 
    186186        $objSiteInfo = new SC_SiteInfo(); 
    187187        $arrInfo = $objSiteInfo->data; 
     
    220220    function sfMakeSubject($subject) { 
    221221        $objQuery = new SC_Query(); 
    222         $objMailView = new SC_SiteView(); 
     222        $objMailView = new SC_SiteView_Ex(); 
    223223        $objTplAssign = new stdClass; 
    224224         
     
    287287        $CONF = SC_Helper_DB_Ex::sfGetBasisData(); 
    288288         
    289         $objMailText = new SC_SiteView(); 
     289        $objMailText = new SC_SiteView_Ex(); 
    290290        $objMailText->assign("CONF", $CONF); 
    291291        $objMailText->assign("name", $arrCustomerData['name01'] . $arrCustomerData['name02']); 
Note: See TracChangeset for help on using the changeset viewer.