Ignore:
Timestamp:
2010/03/11 10:35:11 (16 years ago)
Author:
kajiwara
Message:

正式版にナイトリービルド版をマージしてみるテスト

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tmp/version-2_5-test/data/class/SC_FormParam.php

    r18007 r18609  
    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.