Ignore:
Timestamp:
2013/02/18 19:09:54 (11 years ago)
Author:
shutta
Message:

#2043 (typo修正・ソース整形・ソースコメントの改善 for 2.12.4)
Zend Framework PHP 標準コーディング規約のコーディングスタイルへ準拠。
classおよびfunctionの開始波括弧「{」のスタイルを修正。

File:
1 edited

Legend:

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

    r22231 r22567  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_Admin_Order_Mail extends LC_Page_Admin_Order_Ex { 
     34class LC_Page_Admin_Order_Mail extends LC_Page_Admin_Order_Ex  
     35{ 
    3536 
    3637    // }}} 
     
    4243     * @return void 
    4344     */ 
    44     function init() { 
     45    function init() 
     46    { 
    4547        parent::init(); 
    4648        $this->tpl_mainpage = 'order/mail.tpl'; 
     
    6062     * @return void 
    6163     */ 
    62     function process() { 
     64    function process() 
     65    { 
    6366        $this->action(); 
    6467        $this->sendResponse(); 
     
    7073     * @return void 
    7174     */ 
    72     function action() { 
     75    function action() 
     76    { 
    7377        $post = $_POST; 
    7478        //一括送信用の処理 
     
    153157     * @var int order_id 
    154158     */ 
    155     function getMailHistory($order_id) { 
     159    function getMailHistory($order_id) 
     160    { 
    156161        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
    157162        $col = 'send_date, subject, template_id, send_id'; 
     
    166171     * @param SC_FormParam $objFormParam 
    167172     */ 
    168     function doSend(&$objFormParam) { 
     173    function doSend(&$objFormParam) 
     174    { 
    169175        $arrErr = $objFormParam->checkerror(); 
    170176 
     
    191197     * @param SC_FormParam $objFormParam 
    192198     */ 
    193     function confirm(&$objFormParam) { 
     199    function confirm(&$objFormParam) 
     200    { 
    194201        $arrErr = $objFormParam->checkerror(); 
    195202        // メールの送信 
     
    218225     * @param SC_FormParam $objFormParam 
    219226     */ 
    220     function changeData(&$objFormParam) { 
     227    function changeData(&$objFormParam) 
     228    { 
    221229        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
    222230 
     
    254262     * @return void 
    255263     */ 
    256     function destroy() { 
     264    function destroy() 
     265    { 
    257266        parent::destroy(); 
    258267    } 
     
    262271     * @param SC_FormParam $objFormParam 
    263272     */ 
    264     function lfInitParam(&$objFormParam) { 
     273    function lfInitParam(&$objFormParam) 
     274    { 
    265275        // 検索条件のパラメーターを初期化 
    266276        parent::lfInitParam($objFormParam); 
Note: See TracChangeset for help on using the changeset viewer.