Changeset 444
- Timestamp:
- 11/04/08 11:01:03 (2 months ago)
- Files:
-
- trunk/lib/model/map/MarketMapBuilder.php (modified) (3 diffs)
- trunk/lib/model/om/BaseMarket.php (modified) (25 diffs)
- trunk/lib/model/om/BaseMarketPeer.php (modified) (24 diffs)
- trunk/lib/model/om/BaseMarket_nature.php (modified) (1 diff)
- trunk/lib/model/om/BaseMarket_provider.php (modified) (1 diff)
- trunk/lib/model/om/BaseMarket_type.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lib/model/map/MarketMapBuilder.php
r362 r444 43 43 $tMap->addColumn('AGENCY_CITY', 'AgencyCity', 'string', CreoleTypes::VARCHAR, false, 100); 44 44 45 $tMap->addColumn('AGENCY_AGENT', 'AgencyAgent', 'string', CreoleTypes::VARCHAR, false, 100); 46 47 $tMap->addColumn('AGENCY_PHONE', 'AgencyPhone', 'string', CreoleTypes::VARCHAR, false, 100); 48 49 $tMap->addColumn('AGENCY_MAIL', 'AgencyMail', 'string', CreoleTypes::VARCHAR, false, 100); 50 45 51 $tMap->addForeignKey('NATURE_ID', 'NatureId', 'int', CreoleTypes::INTEGER, 'market_nature', 'ID', true, 11); 46 52 … … 129 135 $tMap->addColumn('SECTOR', 'Sector', 'string', CreoleTypes::VARCHAR, false, 100); 130 136 137 $tMap->addForeignKey('DISTRICT_ID', 'DistrictId', 'int', CreoleTypes::INTEGER, 'apidistrict', 'ID', false, 11); 138 131 139 $tMap->addColumn('ADDRESS1', 'Address1', 'string', CreoleTypes::VARCHAR, false, 100); 132 140 … … 190 198 191 199 $tMap->addColumn('URL', 'Url', 'string', CreoleTypes::VARCHAR, false, 160); 200 201 $tMap->addColumn('LAST_CHANGE', 'LastChange', 'int', CreoleTypes::TIMESTAMP, false, null); 192 202 193 203 $tMap->addColumn('CREATED_AT', 'CreatedAt', 'int', CreoleTypes::TIMESTAMP, false, null); trunk/lib/model/om/BaseMarket.php
r362 r444 30 30 31 31 32 protected $agency_agent; 33 34 35 36 protected $agency_phone; 37 38 39 40 protected $agency_mail; 41 42 43 32 44 protected $nature_id; 33 45 … … 202 214 203 215 216 protected $district_id; 217 218 219 204 220 protected $address1; 205 221 … … 326 342 327 343 344 protected $last_change; 345 346 347 328 348 protected $created_at; 329 349 … … 342 362 343 363 364 protected $aApidistrict; 365 366 344 367 protected $collPictures; 345 368 … … 386 409 387 410 return $this->agency_city; 411 } 412 413 414 public function getAgencyAgent() 415 { 416 417 return $this->agency_agent; 418 } 419 420 421 public function getAgencyPhone() 422 { 423 424 return $this->agency_phone; 425 } 426 427 428 public function getAgencyMail() 429 { 430 431 return $this->agency_mail; 388 432 } 389 433 … … 750 794 751 795 796 public function getDistrictId() 797 { 798 799 return $this->district_id; 800 } 801 802 752 803 public function getAddress1() 753 804 { … … 964 1015 965 1016 return $this->url; 1017 } 1018 1019 1020 public function getLastChange($format = 'Y-m-d H:i:s') 1021 { 1022 1023 if ($this->last_change === null || $this->last_change === '') { 1024 return null; 1025 } elseif (!is_int($this->last_change)) { 1026 $ts = strtotime($this->last_change); 1027 if ($ts === -1 || $ts === false) { throw new PropelException("Unable to parse value of [last_change] as date/time value: " . var_export($this->last_change, true)); 1028 } 1029 } else { 1030 $ts = $this->last_change; 1031 } 1032 if ($format === null) { 1033 return $ts; 1034 } elseif (strpos($format, '%') !== false) { 1035 return strftime($format, $ts); 1036 } else { 1037 return date($format, $ts); 1038 } 966 1039 } 967 1040 … … 1085 1158 } 1086 1159 1160 public function setAgencyAgent($v) 1161 { 1162 1163 if ($v !== null && !is_string($v)) { 1164 $v = (string) $v; 1165 } 1166 1167 if ($this->agency_agent !== $v) { 1168 $this->agency_agent = $v; 1169 $this->modifiedColumns[] = MarketPeer::AGENCY_AGENT; 1170 } 1171 1172 } 1173 1174 public function setAgencyPhone($v) 1175 { 1176 1177 if ($v !== null && !is_string($v)) { 1178 $v = (string) $v; 1179 } 1180 1181 if ($this->agency_phone !== $v) { 1182 $this->agency_phone = $v; 1183 $this->modifiedColumns[] = MarketPeer::AGENCY_PHONE; 1184 } 1185 1186 } 1187 1188 public function setAgencyMail($v) 1189 { 1190 1191 if ($v !== null && !is_string($v)) { 1192 $v = (string) $v; 1193 } 1194 1195 if ($this->agency_mail !== $v) { 1196 $this->agency_mail = $v; 1197 $this->modifiedColumns[] = MarketPeer::AGENCY_MAIL; 1198 } 1199 1200 } 1201 1087 1202 public function setNatureId($v) 1088 1203 { … … 1671 1786 } 1672 1787 1788 public function setDistrictId($v) 1789 { 1790 1791 if ($v !== null && !is_int($v) && is_numeric($v)) { 1792 $v = (int) $v; 1793 } 1794 1795 if ($this->district_id !== $v) { 1796 $this->district_id = $v; 1797 $this->modifiedColumns[] = MarketPeer::DISTRICT_ID; 1798 } 1799 1800 if ($this->aApidistrict !== null && $this->aApidistrict->getId() !== $v) { 1801 $this->aApidistrict = null; 1802 } 1803 1804 } 1805 1673 1806 public function setAddress1($v) 1674 1807 { … … 2073 2206 $this->url = $v; 2074 2207 $this->modifiedColumns[] = MarketPeer::URL; 2208 } 2209 2210 } 2211 2212 public function setLastChange($v) 2213 { 2214 2215 if ($v !== null && !is_int($v)) { 2216 $ts = strtotime($v); 2217 if ($ts === -1 || $ts === false) { throw new PropelException("Unable to parse date/time value for [last_change] from input: " . var_export($v, true)); 2218 } 2219 } else { 2220 $ts = $v; 2221 } 2222 if ($this->last_change !== $ts) { 2223 $this->last_change = $ts; 2224 $this->modifiedColumns[] = MarketPeer::LAST_CHANGE; 2075 2225 } 2076 2226 … … 2125 2275 $this->agency_city = $rs->getString($startcol + 4); 2126 2276 2127 $this->nature_id = $rs->getInt($startcol + 5); 2128 2129 $this->type_id = $rs->getInt($startcol + 6); 2130 2131 $this->active = $rs->getBoolean($startcol + 7); 2132 2133 $this->exclusivity = $rs->getBoolean($startcol + 8); 2134 2135 $this->mandat_number = $rs->getString($startcol + 9); 2136 2137 $this->mandat_comment = $rs->getString($startcol + 10); 2138 2139 $this->mandat_start_date = $rs->getTimestamp($startcol + 11, null); 2140 2141 $this->mandat_end_date = $rs->getTimestamp($startcol + 12, null); 2142 2143 $this->available_date = $rs->getTimestamp($startcol + 13, null); 2144 2145 $this->compromise = $rs->getBoolean($startcol + 14); 2146 2147 $this->compromise_date = $rs->getTimestamp($startcol + 15, null); 2148 2149 $this->reduced_costs = $rs->getBoolean($startcol + 16); 2150 2151 $this->keys_in_agency = $rs->getBoolean($startcol + 17); 2152 2153 $this->busy = $rs->getBoolean($startcol + 18); 2154 2155 $this->price = $rs->getInt($startcol + 19); 2156 2157 $this->land_tax = $rs->getInt($startcol + 20); 2158 2159 $this->costs = $rs->getInt($startcol + 21); 2160 2161 $this->agency_fees = $rs->getInt($startcol + 22); 2162 2163 $this->parts = $rs->getString($startcol + 23); 2164 2165 $this->level = $rs->getInt($startcol + 24); 2166 2167 $this->levels = $rs->getInt($startcol + 25); 2168 2169 $this->lastlevel = $rs->getBoolean($startcol + 26); 2170 2171 $this->private_garden = $rs->getBoolean($startcol + 27); 2172 2173 $this->caves = $rs->getInt($startcol + 28); 2174 2175 $this->carparks = $rs->getInt($startcol + 29); 2176 2177 $this->carparks_out = $rs->getInt($startcol + 30); 2178 2179 $this->carparks_basement = $rs->getInt($startcol + 31); 2180 2181 $this->state = $rs->getString($startcol + 32); 2182 2183 $this->quiet = $rs->getBoolean($startcol + 33); 2184 2185 $this->exposition = $rs->getString($startcol + 34); 2186 2187 $this->view = $rs->getString($startcol + 35); 2188 2189 $this->kitchen = $rs->getString($startcol + 36); 2190 2191 $this->bathrooms = $rs->getInt($startcol + 37); 2192 2193 $this->wcs = $rs->getInt($startcol + 38); 2194 2195 $this->rooms = $rs->getInt($startcol + 39); 2196 2197 $this->livingroom_surface = $rs->getInt($startcol + 40); 2198 2199 $this->total_surface = $rs->getInt($startcol + 41); 2200 2201 $this->garden_surface = $rs->getInt($startcol + 42); 2202 2203 $this->terrace_surface = $rs->getInt($startcol + 43); 2204 2205 $this->comment = $rs->getString($startcol + 44); 2206 2207 $this->comment_private = $rs->getString($startcol + 45); 2208 2209 $this->building = $rs->getString($startcol + 46); 2210 2211 $this->sector = $rs->getString($startcol + 47); 2212 2213 $this->address1 = $rs->getString($startcol + 48); 2214 2215 $this->address2 = $rs->getString($startcol + 49); 2216 2217 $this->zipcode = $rs->getString($startcol + 50); 2218 2219 $this->city = $rs->getString($startcol + 51); 2220 2221 $this->city_insee = $rs->getInt($startcol + 52); 2222 2223 $this->street_insee = $rs->getInt($startcol + 53); 2224 2225 $this->standing_type = $rs->getString($startcol + 54); 2226 2227 $this->era = $rs->getString($startcol + 55); 2228 2229 $this->heading_type = $rs->getString($startcol + 56); 2230 2231 $this->hot_water = $rs->getString($startcol + 57); 2232 2233 $this->custodian = $rs->getBoolean($startcol + 58); 2234 2235 $this->park = $rs->getBoolean($startcol + 59); 2236 2237 $this->garden = $rs->getBoolean($startcol + 60); 2238 2239 $this->swimmingpool = $rs->getBoolean($startcol + 61); 2240 2241 $this->tennis = $rs->getBoolean($startcol + 62); 2242 2243 $this->lift = $rs->getBoolean($startcol + 63); 2244 2245 $this->legal_status = $rs->getString($startcol + 64); 2246 2247 $this->house_kind = $rs->getString($startcol + 65); 2248 2249 $this->house_name = $rs->getString($startcol + 66); 2250 2251 $this->housing_name = $rs->getString($startcol + 67); 2252 2253 $this->lot_num = $rs->getString($startcol + 68); 2254 2255 $this->environnement = $rs->getString($startcol + 69); 2256 2257 $this->configuration = $rs->getString($startcol + 70); 2258 2259 $this->vegetation = $rs->getString($startcol + 71); 2260 2261 $this->access = $rs->getString($startcol + 72); 2262 2263 $this->cadastre_reference = $rs->getString($startcol + 73); 2264 2265 $this->assainissement = $rs->getString($startcol + 74); 2266 2267 $this->cos = $rs->getInt($startcol + 75); 2268 2269 $this->shon = $rs->getInt($startcol + 76); 2270 2271 $this->building_permit = $rs->getBoolean($startcol + 77); 2272 2273 $this->url = $rs->getString($startcol + 78); 2274 2275 $this->created_at = $rs->getTimestamp($startcol + 79, null); 2276 2277 $this->updated_at = $rs->getTimestamp($startcol + 80, null); 2277 $this->agency_agent = $rs->getString($startcol + 5); 2278 2279 $this->agency_phone = $rs->getString($startcol + 6); 2280 2281 $this->agency_mail = $rs->getString($startcol + 7); 2282 2283 $this->nature_id = $rs->getInt($startcol + 8); 2284 2285 $this->type_id = $rs->getInt($startcol + 9); 2286 2287 $this->active = $rs->getBoolean($startcol + 10); 2288 2289 $this->exclusivity = $rs->getBoolean($startcol + 11); 2290 2291 $this->mandat_number = $rs->getString($startcol + 12); 2292 2293 $this->mandat_comment = $rs->getString($startcol + 13); 2294 2295 $this->mandat_start_date = $rs->getTimestamp($startcol + 14, null); 2296 2297 $this->mandat_end_date = $rs->getTimestamp($startcol + 15, null); 2298 2299 $this->available_date = $rs->getTimestamp($startcol + 16, null); 2300 2301 $this->compromise = $rs->getBoolean($startcol + 17); 2302 2303 $this->compromise_date = $rs->getTimestamp($startcol + 18, null); 2304 2305 $this->reduced_costs = $rs->getBoolean($startcol + 19); 2306 2307 $this->keys_in_agency = $rs->getBoolean($startcol + 20); 2308 2309 $this->busy = $rs->getBoolean($startcol + 21); 2310 2311 $this->price = $rs->getInt($startcol + 22); 2312 2313 $this->land_tax = $rs->getInt($startcol + 23); 2314 2315 $this->costs = $rs->getInt($startcol + 24); 2316 2317 $this->agency_fees = $rs->getInt($startcol + 25); 2318 2319 $this->parts = $rs->getString($startcol + 26); 2320 2321 $this->level = $rs->getInt($startcol + 27); 2322 2323 $this->levels = $rs->getInt($startcol + 28); 2324 2325 $this->lastlevel = $rs->getBoolean($startcol + 29); 2326 2327 $this->private_garden = $rs->getBoolean($startcol + 30); 2328 2329 $this->caves = $rs->getInt($startcol + 31); 2330 2331 $this->carparks = $rs->getInt($startcol + 32); 2332 2333 $this->carparks_out = $rs->getInt($startcol + 33); 2334 2335 $this->carparks_basement = $rs->getInt($startcol + 34); 2336 2337 $this->state = $rs->getString($startcol + 35); 2338 2339 $this->quiet = $rs->getBoolean($startcol + 36); 2340 2341 $this->exposition = $rs->getString($startcol + 37); 2342 2343 $this->view = $rs->getString($startcol + 38); 2344 2345 $this->kitchen = $rs->getString($startcol + 39); 2346 2347 $this->bathrooms = $rs->getInt($startcol + 40); 2348 2349 $this->wcs = $rs->getInt($startcol + 41); 2350 2351 $this->rooms = $rs->getInt($startcol + 42); 2352 2353 $this->livingroom_surface = $rs->getInt($startcol + 43); 2354 2355 $this->total_surface = $rs->getInt($startcol + 44); 2356 2357 $this->garden_surface = $rs->getInt($startcol + 45); 2358 2359 $this->terrace_surface = $rs->getInt($startcol + 46); 2360 2361 $this->comment = $rs->getString($startcol + 47); 2362 2363 $this->comment_private = $rs->getString($startcol + 48); 2364 2365 $this->building = $rs->getString($startcol + 49); 2366 2367 $this->sector = $rs->getString($startcol + 50); 2368 2369 $this->district_id = $rs->getInt($startcol + 51); 2370 2371 $this->address1 = $rs->getString($startcol + 52); 2372 2373 $this->address2 = $rs->getString($startcol + 53); 2374 2375 $this->zipcode = $rs->getString($startcol + 54); 2376 2377 $this->city = $rs->getString($startcol + 55); 2378 2379 $this->city_insee = $rs->getInt($startcol + 56); 2380 2381 $this->street_insee = $rs->getInt($startcol + 57); 2382 2383 $this->standing_type = $rs->getString($startcol + 58); 2384 2385 $this->era = $rs->getString($startcol + 59); 2386 2387 $this->heading_type = $rs->getString($startcol + 60); 2388 2389 $this->hot_water = $rs->getString($startcol + 61); 2390 2391 $this->custodian = $rs->getBoolean($startcol + 62); 2392 2393 $this->park = $rs->getBoolean($startcol + 63); 2394 2395 $this->garden = $rs->getBoolean($startcol + 64); 2396 2397 $this->swimmingpool = $rs->getBoolean($startcol + 65); 2398 2399 $this->tennis = $rs->getBoolean($startcol + 66); 2400 2401 $this->lift = $rs->getBoolean($startcol + 67); 2402 2403 $this->legal_status = $rs->getString($startcol + 68); 2404 2405 $this->house_kind = $rs->getString($startcol + 69); 2406 2407 $this->house_name = $rs->getString($startcol + 70); 2408 2409 $this->housing_name = $rs->getString($startcol + 71); 2410 2411 $this->lot_num = $rs->getString($startcol + 72); 2412 2413 $this->environnement = $rs->getString($startcol + 73); 2414 2415 $this->configuration = $rs->getString($startcol + 74); 2416 2417 $this->vegetation = $rs->getString($startcol + 75); 2418 2419 $this->access = $rs->getString($startcol + 76); 2420 2421 $this->cadastre_reference = $rs->getString($startcol + 77); 2422 2423 $this->assainissement = $rs->getString($startcol + 78); 2424 2425 $this->cos = $rs->getInt($startcol + 79); 2426 2427 $this->shon = $rs->getInt($startcol + 80); 2428 2429 $this->building_permit = $rs->getBoolean($startcol + 81); 2430 2431 $this->url = $rs->getString($startcol + 82); 2432 2433 $this->last_change = $rs->getTimestamp($startcol + 83, null); 2434 2435 $this->created_at = $rs->getTimestamp($startcol + 84, null); 2436 2437 $this->updated_at = $rs->getTimestamp($startcol + 85, null); 2278 2438 2279 2439 $this->resetModified(); … … 2281 2441 $this->setNew(false); 2282 2442 2283 return $startcol + 8 1;2443 return $startcol + 86; 2284 2444 } catch (Exception $e) { 2285 2445 throw new PropelException("Error populating Market object", $e); … … 2368 2528 } 2369 2529 $this->setMarket_type($this->aMarket_type); 2530 } 2531 2532 if ($this->aApidistrict !== null) { 2533 if ($this->aApidistrict->isModified()) { 2534 $affectedRows += $this->aApidistrict->save($con); 2535 } 2536 $this->setApidistrict($this->aApidistrict); 2370 2537 } 2371 2538 … … 2445 2612 } 2446 2613 2614 if ($this->aApidistrict !== null) { 2615 if (!$this->aApidistrict->validate($columns)) { 2616 $failureMap = array_merge($failureMap, $this->aApidistrict->getValidationFailures()); 2617 } 2618 } 2619 2447 2620 2448 2621 if (($retval = MarketPeer::doValidate($this, $columns)) !== true) { … … 2493 2666 break; 2494 2667 case 5: 2668 return $this->getAgencyAgent(); 2669 break; 2670 case 6: 2671 return $this->getAgencyPhone(); 2672 break; 2673 case 7: 2674 return $this->getAgencyMail(); 2675 break; 2676 case 8: 2495 2677 return $this->getNatureId(); 2496 2678 break; 2497 case 6:2679 case 9: 2498 2680 return $this->getTypeId(); 2499 2681 break; 2500 case 7:2682 case 10: 2501 2683 return $this->getActive(); 2502 2684 break; 2503 case 8:2685 case 11: 2504 2686 return $this->getExclusivity(); 2505 2687 break; 2506 case 9:2688 case 12: 2507 2689 return $this->getMandatNumber(); 2508 2690 break; 2509 case 1 0:2691 case 13: 2510 2692 return $this->getMandatComment(); 2511 2693 break; 2512 case 1 1:2694 case 14: 2513 2695 return $this->getMandatStartDate(); 2514 2696 break; 2515 case 1 2:2697 case 15: 2516 2698 return $this->getMandatEndDate(); 2517 2699 break; 2518 case 1 3:2700 case 16: 2519 2701 return $this->getAvailableDate(); 2520 2702 break; 2521 case 1 4:2703 case 17: 2522 2704 return $this->getCompromise(); 2523 2705 break; 2524 case 1 5:2706 case 18: 2525 2707 return $this->getCompromiseDate(); 2526 2708 break; 2527 case 1 6:2709 case 19: 2528 2710 return $this->getReducedCosts(); 2529 2711 break; 2530 case 17:2712 case 20: 2531 2713 return $this->getKeysInAgency(); 2532 2714 break; 2533 case 18:2715 case 21: 2534 2716 return $this->getBusy(); 2535 2717 break; 2536 case 19:2718 case 22: 2537 2719 return $this->getPrice(); 2538 2720 break; 2539 case 2 0:2721 case 23: 2540 2722 return $this->getLandTax(); 2541 2723 break; 2542 case 2 1:2724 case 24: 2543 2725 return $this->getCosts(); 2544 2726 break; 2545 case 2 2:2727 case 25: 2546 2728 return $this->getAgencyFees(); 2547 2729 break; 2548 case 2 3:2730 case 26: 2549 2731 return $this->getParts(); 2550 2732 break; 2551 case 2 4:2733 case 27: 2552 2734 return $this->getLevel(); 2553 2735 break; 2554 case 2 5:2736 case 28: 2555 2737 return $this->getLevels(); 2556 2738 break; 2557 case 2 6:2739 case 29: 2558 2740 return $this->getLastlevel(); 2559 2741 break; 2560 case 27:2742 case 30: 2561 2743 return $this->getPrivateGarden(); 2562 2744 break; 2563 case 28:2745 case 31: 2564 2746 return $this->getCaves(); 2565 2747 break; 2566 case 29:2748 case 32: 2567 2749 return $this->getCarparks(); 2568 2750 break; 2569 case 3 0:2751 case 33: 2570 2752 return $this->getCarparksOut(); 2571 2753 break; 2572 case 3 1:2754 case 34: 2573 2755 return $this->getCarparksBasement(); 2574 2756 break; 2575 case 3 2:2757 case 35: 2576 2758 return $this->getState(); 2577 2759 break; 2578 case 3 3:2760 case 36: 2579 2761 return $this->getQuiet(); 2580 2762 break; 2581 case 3 4:2763 case 37: 2582 2764 return $this->getExposition(); 2583 2765 break; 2584 case 3 5:2766 case 38: 2585 2767 return $this->getView(); 2586 2768 break; 2587 case 3 6:2769 case 39: 2588 2770 return $this->getKitchen(); 2589 2771 break; 2590 case 37:2772 case 40: 2591 2773 return $this->getBathrooms(); 2592 2774 break; 2593 case 38:2775 case 41: 2594 2776 return $this->getWcs(); 2595 2777 break; 2596 case 39:2778 case 42: 2597 2779 return $this->getRooms(); 2598 2780 break; 2599 case 4 0:2781 case 43: 2600 2782 return $this->getLivingroomSurface(); 2601 2783 break; 2602 case 4 1:2784 case 44: 2603 2785 return $this->getTotalSurface(); 2604 2786 break; 2605 case 4 2:2787 case 45: 2606 2788 return $this->getGardenSurface(); 2607 2789 break; 2608 case 4 3:2790 case 46: 2609 2791 return $this->getTerraceSurface(); 2610 2792 break; 2611 case 4 4:2793 case 47: 2612 2794 return $this->getComment(); 2613 2795 break; 2614 case 4 5:2796 case 48: 2615 2797 return $this->getCommentPrivate(); 2616 2798 break; 2617 case 4 6:2799 case 49: 2618 2800 return $this->getBuilding(); 2619 2801 break; 2620 case 47:2802 case 50: 2621 2803 return $this->getSector(); 2622 2804 break; 2623 case 48: 2805 case 51: 2806 return $this->getDistrictId(); 2807 break; 2808 case 52: 2624 2809 return $this->getAddress1(); 2625 2810 break; 2626 case 49:2811 case 53: 2627 2812 return $this->getAddress2(); 2628 2813 break; 2629 case 5 0:2814 case 54: 2630 2815 return $this->getZipcode(); 2631 2816 break; 2632 case 5 1:2817 case 55: 2633 2818 return $this->getCity(); 2634 2819 break; 2635 case 5 2:2820 case 56: 2636 2821 return $this->getCityInsee(); 2637 2822 break; 2638 case 5 3:2823 case 57: 2639 2824 return $this->getStreetInsee(); 2640 2825 break; 2641 case 5 4:2826 case 58: 2642 2827 return $this->getStandingType(); 2643 2828 break; 2644 case 5 5:2829 case 59: 2645 2830 return $this->getEra(); 2646 2831 break; 2647 case 56:2832 case 60: 2648 2833 return $this->getHeadingType(); 2649 2834 break; 2650 case 57:2835 case 61: 2651 2836 return $this->getHotWater(); 2652 2837 break; 2653 case
