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/basis/LC_Page_Admin_Basis_Point.php

    r23091 r23124  
    3838     * @return void 
    3939     */ 
    40     function init() 
     40    public function init() 
    4141    { 
    4242        parent::init(); 
     
    5353     * @return void 
    5454     */ 
    55     function process() 
     55    public function process() 
    5656    { 
    5757        $this->action(); 
     
    6464     * @return void 
    6565     */ 
    66     function action() 
     66    public function action() 
    6767    { 
    6868        $objDb = new SC_Helper_DB_Ex(); 
     
    107107 
    108108    /* パラメーター情報の初期化 */ 
    109     function lfInitParam(&$objFormParam) 
     109    public function lfInitParam(&$objFormParam) 
    110110    { 
    111111        $objFormParam->addParam('ポイント付与率', 'point_rate', PERCENTAGE_LEN, 'n', array('EXIST_CHECK', 'MAX_LENGTH_CHECK', 'NUM_CHECK')); 
     
    113113    } 
    114114 
    115     function lfUpdateData($post) 
     115    public function lfUpdateData($post) 
    116116    { 
    117117        // 入力データを渡す。 
     
    123123    } 
    124124 
    125     function lfInsertData($post) 
     125    public function lfInsertData($post) 
    126126    { 
    127127        // 入力データを渡す。 
Note: See TracChangeset for help on using the changeset viewer.