Changeset 18334
- Timestamp:
- 2009/10/17 22:44:16 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/comu-ver2/data/class/SC_FormParam.php
r18021 r18334 22 22 */ 23 23 24 /* パラメータ管理クラス */ 24 /** 25 * パラメータ管理クラス 26 * 27 * :XXX: addParam と setParam で言う「パラメータ」が用語として競合しているように感じる。(2009/10/17 Seasoft 塚田) 28 * 29 * @package SC 30 * @author LOCKON CO.,LTD. 31 */ 25 32 class SC_FormParam { 26 33 … … 38 45 function SC_FormParam() { 39 46 $this->check_dir = IMAGE_SAVE_DIR; 47 $this->initParam(); 48 } 49 50 /** 51 * パラメータの初期化 52 * 53 * @return void 54 */ 55 function initParam() { 40 56 $this->disp_name = array(); 41 57 $this->keyname = array();
Note: See TracChangeset
for help on using the changeset viewer.