Ignore:
Timestamp:
2009/10/17 22:44:16 (15 years ago)
Author:
Seasoft
Message:
  • パラメータの初期化をメソッドとして定義
  • コメントを追記
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/comu-ver2/data/class/SC_FormParam.php

    r18021 r18334  
    2222 */ 
    2323 
    24 /* パラメータ管理クラス */ 
     24/** 
     25 * パラメータ管理クラス 
     26 * 
     27 * :XXX: addParam と setParam で言う「パラメータ」が用語として競合しているように感じる。(2009/10/17 Seasoft 塚田) 
     28 * 
     29 * @package SC 
     30 * @author LOCKON CO.,LTD. 
     31 */ 
    2532class SC_FormParam { 
    2633 
     
    3845    function SC_FormParam() { 
    3946        $this->check_dir = IMAGE_SAVE_DIR; 
     47        $this->initParam(); 
     48    } 
     49 
     50    /** 
     51     * パラメータの初期化 
     52     * 
     53     * @return void 
     54     */ 
     55    function initParam() { 
    4056        $this->disp_name = array(); 
    4157        $this->keyname = array(); 
Note: See TracChangeset for help on using the changeset viewer.