Ignore:
Timestamp:
2013/06/08 16:35:27 (11 years ago)
Author:
Seasoft
Message:

#2043 (typo修正・ソース整形・ソースコメントの改善 for 2.13.0)

  • 主に空白・空白行の調整。もう少し整えたいが、一旦現状コミット。
File:
1 edited

Legend:

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

    r22584 r22856  
    2929 * @version $Id$ 
    3030 */ 
    31 class SC_Helper_Mail  
     31class SC_Helper_Mail 
    3232{ 
    33  
    3433    /** メールテンプレートのパス */ 
    3534    var $arrMAILTPLPATH; 
     
    3736    /** 
    3837     * LC_Pageオブジェクト. 
    39      *  
     38     * 
    4039     * @var LC_Page 
    4140     */ 
     
    5453    /** 
    5554     * LC_Pageオブジェクトをセットします. 
    56      *  
     55     * 
    5756     * @param LC_Page $objPage 
    5857     */ 
     
    6463    /** 
    6564     * LC_Pageオブジェクトを返します. 
    66      *  
     65     * 
    6766     * @return LC_Page 
    6867     */ 
     
    7574    function sfSendTemplateMail($to, $to_name, $template_id, &$objPage, $from_address = '', $from_name = '', $reply_to = '', $bcc = '') 
    7675    { 
    77  
    7876        // メールテンプレート情報の取得 
    7977        $objMailtemplate = new SC_Helper_Mailtemplate_Ex(); 
     
    107105    function sfSendOrderMail($order_id, $template_id, $subject = '', $header = '', $footer = '', $send = true) 
    108106    { 
    109  
    110107        $arrTplVar = new stdClass(); 
    111108        $arrInfo = SC_Helper_DB_Ex::sfGetBasisData(); 
     
    271268        // #1940 (SC_Helper_Mail#sfMakeSubject 先頭に改行を含む値を返す) 対応 
    272269        $subject = trim($subject); 
     270 
    273271        return $subject; 
    274272    } 
     
    307305            return true; 
    308306        } 
     307 
    309308        return false; 
    310309    } 
     
    373372 
    374373        $objMail->sendMail(); 
     374 
    375375        return true; 
    376376    } 
     
    401401 
    402402        $arrResults = $objQuery->select('*', 'dtb_mailmaga_template', $where, $arrValues); 
     403 
    403404        return $arrResults; 
    404405    } 
     
    429430 
    430431        $arrResults = $objQuery->select('*', 'dtb_send_history', $where, $arrValues); 
     432 
    431433        return $arrResults; 
    432434    } 
     
    466468 
    467469        foreach ($arrDestinationList as $arrDestination) { 
    468  
    469470            // お名前の変換 
    470471            $customerName = trim($arrDestination['name']); 
     
    526527            $sendResut = $objMail->sendHtmlMail(); 
    527528        } 
     529 
    528530        return; 
    529531    } 
Note: See TracChangeset for help on using the changeset viewer.