| @@ 196-199 (lines=4) @@ | ||
| 193 | } |
|
| 194 | continue 2; |
|
| 195 | case "text": |
|
| 196 | if (!empty($iterator["$objId-1"])) { |
|
| 197 | $content = valid_string_db($iterator["$objId-1"], 1); |
|
| 198 | break; |
|
| 199 | } |
|
| 200 | continue 2; |
|
| 201 | case "coordinates": |
|
| 202 | if (!empty($iterator["$objId-1"])) { |
|
| @@ 202-205 (lines=4) @@ | ||
| 199 | } |
|
| 200 | continue 2; |
|
| 201 | case "coordinates": |
|
| 202 | if (!empty($iterator["$objId-1"])) { |
|
| 203 | $content = valid_coord_serialized($iterator["$objId-1"]); |
|
| 204 | break; |
|
| 205 | } |
|
| 206 | continue 2; |
|
| 207 | case "file": |
|
| 208 | // echo "In file processing ...<br/>"; |
|
| @@ 226-229 (lines=4) @@ | ||
| 223 | continue 2; |
|
| 224 | ||
| 225 | case "boolean": |
|
| 226 | if (!empty($iterator["$objId-3"])) { |
|
| 227 | $content = valid_boolean($iterator["$objId-3"]); |
|
| 228 | break; |
|
| 229 | } |
|
| 230 | continue 2; |
|
| 231 | case "integer": |
|
| 232 | if (!empty($iterator["$objId-4"])) { |
|
| @@ 232-235 (lines=4) @@ | ||
| 229 | } |
|
| 230 | continue 2; |
|
| 231 | case "integer": |
|
| 232 | if (!empty($iterator["$objId-4"])) { |
|
| 233 | $content = valid_integer($iterator["$objId-4"]); |
|
| 234 | break; |
|
| 235 | } |
|
| 236 | continue 2; |
|
| 237 | default: |
|
| 238 | throw new Exception("Internal Error: Unknown option type " . $objValue . "!"); |
|