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/mail/LC_Page_Admin_Mail_History.php

    r22206 r22567  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_Admin_Mail_History extends LC_Page_Admin_Ex { 
     34class LC_Page_Admin_Mail_History extends LC_Page_Admin_Ex  
     35{ 
    3536 
    3637    // }}} 
     
    4243     * @return void 
    4344     */ 
    44     function init() { 
     45    function init() 
     46    { 
    4547        parent::init(); 
    4648        $this->tpl_mainpage = 'mail/history.tpl'; 
     
    5759     * @return void 
    5860     */ 
    59     function process() { 
     61    function process() 
     62    { 
    6063        $this->action(); 
    6164        $this->sendResponse(); 
     
    6770     * @return void 
    6871     */ 
    69     function action() { 
     72    function action() 
     73    { 
    7074 
    7175        switch ($this->getMode()) { 
     
    9195     * @return void 
    9296     */ 
    93     function destroy() { 
     97    function destroy() 
     98    { 
    9499        parent::destroy(); 
    95100    } 
     
    101106     * @return array( integer 全体件数, mixed メール配信データ一覧配列, mixed SC_PageNaviオブジェクト) 
    102107     */ 
    103     function lfDoSearch($search_pageno = 1) { 
     108    function lfDoSearch($search_pageno = 1) 
     109    { 
    104110 
    105111        // 引数の初期化 
     
    140146     * @return void 
    141147     */ 
    142     function lfDeleteHistory($send_id) { 
     148    function lfDeleteHistory($send_id) 
     149    { 
    143150            $objQuery =& SC_Query_Ex::getSingletonInstance(); 
    144151            $objQuery->update('dtb_send_history', 
Note: See TracChangeset for help on using the changeset viewer.