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/system/LC_Page_Admin_System_System.php

    r22926 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        $objFormParam = new SC_FormParam_Ex(); 
     
    8686     * フォームパラメーター初期化. 
    8787     * 
    88      * @param object $objFormParam 
    89      * @param array $arrParams $_GET値 
     88     * @param  object $objFormParam 
     89     * @param  array  $arrParams    $_GET値 
    9090     * @return void 
    9191     */ 
    92     function initForm(&$objFormParam, &$arrParams) 
     92    public function initForm(&$objFormParam, &$arrParams) 
    9393    { 
    9494        $objFormParam->addParam('mode', 'mode', INT_LEN, '', array('ALPHA_CHECK', 'MAX_LENGTH_CHECK')); 
     
    101101     * @return array システム情報 
    102102     */ 
    103     function getSystemInfo() 
     103    public function getSystemInfo() 
    104104    { 
    105105        $objDB = SC_DB_DBFactory_Ex::getInstance(); 
Note: See TracChangeset for help on using the changeset viewer.