Changeset 16330


Ignore:
Timestamp:
2007/10/08 21:26:49 (16 years ago)
Author:
naka
Message:

mdl_speedmail開発

Location:
branches/feature-module-update
Files:
10 added
4 edited

Legend:

Unmodified
Added
Removed
  • branches/feature-module-update/data/class/SC_SendMail.php

    r16326 r16330  
    246246    } 
    247247} 
    248  
    249 if(file_exists(MODULE2_PATH . "module_inc.php")) { 
    250      
    251 } else { 
    252      
    253 } 
    254248?> 
  • branches/feature-module-update/data/class/pages/admin/mail/LC_Page_Admin_Mail_Sendmail.php

    r16322 r16330  
    88// {{{ requires 
    99require_once(CLASS_PATH . "pages/LC_Page.php"); 
     10 
     11// SC_SendMailの拡張 
     12if(file_exists(MODULE2_PATH . "module_inc.php")) { 
     13    require_once(MODULE2_PATH . "module_inc.php"); 
     14} else { 
     15    require_once(CLASS_EX_PATH . "SC_SendMail_Ex.php"); 
     16} 
    1017 
    1118/** 
     
    8390        //---- 送信結果フラグ用SQL 
    8491        $sql_flag ="UPDATE dtb_send_customer SET send_flag = ? WHERE send_id = ? AND customer_id = ?"; 
    85         $objMail = new SC_SendMail(); 
     92        $objMail = new SC_SendMail_Ex(); 
    8693         
    8794        //---- メール生成と送信 
  • branches/feature-module-update/html/admin/require.php

    r16326 r16330  
    1010    /** クラスパス */ 
    1111    define("CLASS_PATH", $include_dir . "/.." . HTML2DATA_DIR . "class/"); 
     12} 
     13 
     14if (!defined("CLASS_EX_PATH")) { 
     15    /** クラスパス */ 
     16    define("CLASS_EX_PATH", $include_dir . "/.." . HTML2DATA_DIR . "class_extends/"); 
    1217} 
    1318 
  • branches/feature-module-update/html/require.php

    r16329 r16330  
    1717    define("CLASS_EX_PATH", $include_dir . HTML2DATA_DIR . "class_extends/"); 
    1818} 
    19  
    2019 
    2120require_once($include_dir . HTML2DATA_DIR. "conf/conf.php"); 
Note: See TracChangeset for help on using the changeset viewer.