Changeset 20339 for branches/version-2_5-dev/data/class/pages/admin/basis/LC_Page_Admin_Basis_ZipInstall.php
- Timestamp:
- 2011/02/23 14:06:50 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_5-dev/data/class/pages/admin/basis/LC_Page_Admin_Basis_ZipInstall.php
r20335 r20339 51 51 var $exec; 52 52 var $tpl_count_mtb_zip; 53 /** フォームパラメータの配列 */54 var $objFormParam;55 53 56 54 // }}} … … 91 89 function action() { 92 90 // パラメータ管理クラス 93 $ this->objFormParam = new SC_FormParam();91 $objFormParam = new SC_FormParam(); 94 92 // パラメータ情報の初期化 95 $this->lfInitParam(); 96 // POST値の取得 97 $this->objFormParam->setParam($_GET); 98 $this->arrErr = $this->objFormParam->checkError(); 99 $this->arrForm = $this->objFormParam->getHashArray(); 93 $this->lfInitParam($this->tpl_mode, $objFormParam); 94 $objFormParam->setParam($_GET); 95 $this->arrErr = $objFormParam->checkError(); 96 $this->arrForm = $objFormParam->getHashArray(); 100 97 101 98 if ($this->exec) { … … 160 157 * @return void 161 158 */ 162 function lfInitParam( ) {163 if ($t his->tpl_mode == 'manual') {164 $ this->objFormParam->addParam("開始行", "startRowNum", INT_LEN, "n", array("EXIST_CHECK", "MAX_LENGTH_CHECK", "NUM_CHECK"));159 function lfInitParam($tpl_mode, &$objFormParam) { 160 if ($tpl_mode == 'manual') { 161 $objFormParam->addParam("開始行", "startRowNum", INT_LEN, "n", array("EXIST_CHECK", "MAX_LENGTH_CHECK", "NUM_CHECK")); 165 162 } 166 163 }
Note: See TracChangeset
for help on using the changeset viewer.