| @@ 182-197 (lines=16) @@ | ||
| 179 | { |
|
| 180 | $column = array_flip($column); |
|
| 181 | ||
| 182 | foreach ($input[$this->column] as $key => $value) { |
|
| 183 | if (!array_key_exists($key, $column)) { |
|
| 184 | continue; |
|
| 185 | } |
|
| 186 | ||
| 187 | $newKey = $key.$column[$key]; |
|
| 188 | ||
| 189 | /* |
|
| 190 | * set new key |
|
| 191 | */ |
|
| 192 | array_set($input, "{$this->column}.$newKey", $value); |
|
| 193 | /* |
|
| 194 | * forget the old key and value |
|
| 195 | */ |
|
| 196 | array_forget($input, "{$this->column}.$key"); |
|
| 197 | } |
|
| 198 | } |
|
| 199 | ||
| 200 | /** |
|
| @@ 240-265 (lines=26) @@ | ||
| 237 | /* |
|
| 238 | * foreach the field set to find the corresponding $column |
|
| 239 | */ |
|
| 240 | foreach ($set as $name => $value) { |
|
| 241 | /* |
|
| 242 | * if doesn't have column name, continue to the next loop |
|
| 243 | */ |
|
| 244 | if (!array_key_exists($name, $column)) { |
|
| 245 | continue; |
|
| 246 | } |
|
| 247 | ||
| 248 | /** |
|
| 249 | * example: $newKey = created_atstart. |
|
| 250 | * |
|
| 251 | * Σ( ° △ °|||)︴ |
|
| 252 | * |
|
| 253 | * I don't know why a form need range input? Only can imagine is for range search.... |
|
| 254 | */ |
|
| 255 | $newKey = $name.$column[$name]; |
|
| 256 | ||
| 257 | /* |
|
| 258 | * set new key |
|
| 259 | */ |
|
| 260 | array_set($input, "{$this->column}.$index.$newKey", $value); |
|
| 261 | /* |
|
| 262 | * forget the old key and value |
|
| 263 | */ |
|
| 264 | array_forget($input, "{$this->column}.$index.$name"); |
|
| 265 | } |
|
| 266 | } |
|
| 267 | } |
|
| 268 | ||