Ignore:
Timestamp:
2013/05/02 18:11:36 (11 years ago)
Author:
h_yoshimoto
Message:

#2236 2.12.3リリース以降の2.12-devへのコミット差し戻し

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-dev/data/class/pages/admin/mail/LC_Page_Admin_Mail.php

    r22567 r22796  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_Admin_Mail extends LC_Page_Admin_Ex  
    35 { 
     34class LC_Page_Admin_Mail extends LC_Page_Admin_Ex { 
    3635 
    3736    // }}} 
     
    4342     * @return void 
    4443     */ 
    45     function init() 
    46     { 
     44    function init() { 
    4745        parent::init(); 
    4846        $this->tpl_mainpage = 'mail/index.tpl'; 
     
    8583     * @return void 
    8684     */ 
    87     function process() 
    88     { 
     85    function process() { 
    8986        $this->action(); 
    9087        $this->sendResponse(); 
     
    9693     * @return void 
    9794     */ 
    98     function action() 
    99     { 
     95    function action() { 
    10096 
    10197        // パラメーター管理クラス 
     
    185181     * @return void 
    186182     */ 
    187     function destroy() 
    188     { 
     183    function destroy() { 
    189184        parent::destroy(); 
    190185    } 
     
    196191     * @return void 
    197192     */ 
    198     function lfInitParamSearchCustomer(&$objFormParam) 
    199     { 
     193    function lfInitParamSearchCustomer(&$objFormParam) { 
    200194        SC_Helper_Customer_Ex::sfSetSearchParam($objFormParam); 
    201195        $objFormParam->addParam('配信形式', 'search_htmlmail', INT_LEN, 'n', array('NUM_CHECK','MAX_LENGTH_CHECK')); 
     
    209203     * @return void 
    210204     */ 
    211     function lfAddParamSelectTemplate(&$objFormParam) 
    212     { 
     205    function lfAddParamSelectTemplate(&$objFormParam) { 
    213206        $objFormParam->addParam('メール形式', 'mail_method', INT_LEN, 'n', array('EXIST_CHECK','ALNUM_CHECK')); 
    214207        $objFormParam->addParam('Subject', 'subject', STEXT_LEN, 'KVa', array('EXIST_CHECK','SPTAB_CHECK','MAX_LENGTH_CHECK')); 
     
    223216     * @return array key:template_id value:サブジェクト【配信形式】 
    224217     */ 
    225     function lfGetMailTemplateList($arrTemplate) 
    226     { 
     218    function lfGetMailTemplateList($arrTemplate) { 
    227219        if (is_array($arrTemplate)) { 
    228220            foreach ($arrTemplate as $line) { 
     
    240232     * @return void 
    241233     */ 
    242     function lfGetTemplateData(&$objFormParam, $template_id) 
    243     { 
     234    function lfGetTemplateData(&$objFormParam, $template_id) { 
    244235        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
    245236        $objQuery->setOrder('template_id DESC'); 
     
    254245     * @return integer 登録した行の dtb_send_history.send_id の値 
    255246     */ 
    256     function lfRegisterData(&$objFormParam) 
    257     { 
     247    function lfRegisterData(&$objFormParam) { 
    258248        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
    259249 
     
    299289     * @return array 
    300290     */ 
    301     function lfGetMailQuery($send_id) 
    302     { 
     291    function lfGetMailQuery($send_id) { 
    303292 
    304293        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
Note: See TracChangeset for help on using the changeset viewer.