Ignore:
Timestamp:
2013/08/24 23:33:52 (11 years ago)
Author:
kimoto
Message:

#2043 typo修正・ソース整形・ソースコメントの改善 for 2.13.0
PHP4的な書き方の修正

File:
1 edited

Legend:

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

    r22926 r23124  
    3838     * @return void 
    3939     */ 
    40     function init() 
     40    public function init() 
    4141    { 
    4242        parent::init(); 
     
    5454     * @return void 
    5555     */ 
    56     function process() 
     56    public function process() 
    5757    { 
    5858        $this->action(); 
     
    6565     * @return void 
    6666     */ 
    67     function action() 
     67    public function action() 
    6868    { 
    6969        switch ($this->getMode()) { 
     
    8686     * 実行履歴の取得 
    8787     * 
    88      * @param integer $search_pageno 表示したいページ番号 
    89      * @return array( integer 全体件数, mixed メール配信データ一覧配列, mixed SC_PageNaviオブジェクト) 
     88     * @param  integer $search_pageno 表示したいページ番号 
     89     * @return array(  integer 全体件数, mixed メール配信データ一覧配列, mixed SC_PageNaviオブジェクト) 
    9090     */ 
    91     function lfDoSearch($search_pageno = 1) 
     91    public function lfDoSearch($search_pageno = 1) 
    9292    { 
    9393        // 引数の初期化 
     
    125125    /** 
    126126     * 送信履歴の削除 
    127      * @param integer $send_id 削除したい送信履歴のID 
     127     * @param  integer $send_id 削除したい送信履歴のID 
    128128     * @return void 
    129129     */ 
    130     function lfDeleteHistory($send_id) 
     130    public function lfDeleteHistory($send_id) 
    131131    { 
    132132            $objQuery =& SC_Query_Ex::getSingletonInstance(); 
Note: See TracChangeset for help on using the changeset viewer.