Merge pull request #8347 from eileenmcnaughton/tidy-up
[civicrm-core.git] / CRM / Core / BAO / Address.php
CommitLineData
6a488035 1<?php
6a488035
TO
2/*
3 +--------------------------------------------------------------------+
7e9e8871 4 | CiviCRM version 4.7 |
6a488035 5 +--------------------------------------------------------------------+
fa938177 6 | Copyright CiviCRM LLC (c) 2004-2016 |
6a488035
TO
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
27
28/**
29 *
30 * @package CRM
fa938177 31 * @copyright CiviCRM LLC (c) 2004-2016
6a488035
TO
32 */
33
34/**
192d36c5 35 * This is class to handle address related functions.
6a488035
TO
36 */
37class CRM_Core_BAO_Address extends CRM_Core_DAO_Address {
38
39 /**
fe482240 40 * Takes an associative array and creates a address.
6a488035 41 *
6a0b768e
TO
42 * @param array $params
43 * (reference ) an assoc array of name/value pairs.
44 * @param bool $fixAddress
45 * True if you need to fix (format) address values.
6a488035
TO
46 * before inserting in db
47 *
e63aff1c
EM
48 * @param null $entity
49 *
a1a2a83d 50 * @return array|NULL
a6c01b45 51 * array of created address
6a488035 52 */
00be9182 53 public static function create(&$params, $fixAddress = TRUE, $entity = NULL) {
6a488035 54 if (!isset($params['address']) || !is_array($params['address'])) {
a1a2a83d 55 return NULL;
6a488035
TO
56 }
57 CRM_Core_BAO_Block::sortPrimaryFirst($params['address']);
58 $addresses = array();
59 $contactId = NULL;
60
61 $updateBlankLocInfo = CRM_Utils_Array::value('updateBlankLocInfo', $params, FALSE);
62 if (!$entity) {
63 $contactId = $params['contact_id'];
64 //get all the addresses for this contact
85c882c5 65 $addresses = self::allAddress($contactId);
6a488035
TO
66 }
67 else {
68 // get all address from location block
69 $entityElements = array(
70 'entity_table' => $params['entity_table'],
71 'entity_id' => $params['entity_id'],
72 );
73 $addresses = self::allEntityAddress($entityElements);
74 }
75
76 $isPrimary = $isBilling = TRUE;
77 $blocks = array();
78 foreach ($params['address'] as $key => $value) {
79 if (!is_array($value)) {
80 continue;
81 }
82
83 $addressExists = self::dataExists($value);
dfcbddc8 84 if (empty($value['id'])) {
85c882c5 85 if (!empty($addresses) && array_key_exists(CRM_Utils_Array::value('location_type_id', $value), $addresses)) {
86 $value['id'] = $addresses[CRM_Utils_Array::value('location_type_id', $value)];
6a488035
TO
87 }
88 }
89
90 // Note there could be cases when address info already exist ($value[id] is set) for a contact/entity
91 // BUT info is not present at this time, and therefore we should be really careful when deleting the block.
92 // $updateBlankLocInfo will help take appropriate decision. CRM-5969
dfcbddc8 93 if (isset($value['id']) && !$addressExists && $updateBlankLocInfo) {
6a488035
TO
94 //delete the existing record
95 CRM_Core_BAO_Block::blockDelete('Address', array('id' => $value['id']));
96 continue;
97 }
98 elseif (!$addressExists) {
99 continue;
100 }
101
8cc574cf 102 if ($isPrimary && !empty($value['is_primary'])) {
6a488035
TO
103 $isPrimary = FALSE;
104 }
105 else {
106 $value['is_primary'] = 0;
107 }
108
8cc574cf 109 if ($isBilling && !empty($value['is_billing'])) {
6a488035
TO
110 $isBilling = FALSE;
111 }
112 else {
113 $value['is_billing'] = 0;
114 }
115
a7488080 116 if (empty($value['manual_geo_code'])) {
6a488035
TO
117 $value['manual_geo_code'] = 0;
118 }
119 $value['contact_id'] = $contactId;
120 $blocks[] = self::add($value, $fixAddress);
121 }
122
123 return $blocks;
124 }
125
126 /**
fe482240 127 * Takes an associative array and adds address.
6a488035 128 *
6a0b768e
TO
129 * @param array $params
130 * (reference ) an assoc array of name/value pairs.
131 * @param bool $fixAddress
132 * True if you need to fix (format) address values.
6a488035
TO
133 * before inserting in db
134 *
906e6120 135 * @return CRM_Core_BAO_Address|null
6a488035 136 */
00be9182 137 public static function add(&$params, $fixAddress) {
e9ff5391 138
6a488035 139 $address = new CRM_Core_DAO_Address();
e9ff5391 140 $checkPermissions = isset($params['check_permissions']) ? $params['check_permissions'] : TRUE;
6a488035
TO
141
142 // fixAddress mode to be done
143 if ($fixAddress) {
144 CRM_Core_BAO_Address::fixAddress($params);
145 }
146
147 $hook = empty($params['id']) ? 'create' : 'edit';
148 CRM_Utils_Hook::pre($hook, 'Address', CRM_Utils_Array::value('id', $params), $params);
149
150 // if id is set & is_primary isn't we can assume no change
151 if (is_numeric(CRM_Utils_Array::value('is_primary', $params)) || empty($params['id'])) {
152 CRM_Core_BAO_Block::handlePrimary($params, get_class());
153 }
e9ff5391 154
6a488035
TO
155 $address->copyValues($params);
156
157 $address->save();
158
159 if ($address->id) {
e9ff5391 160 $customFields = CRM_Core_BAO_CustomField::getFields('Address', FALSE, TRUE, NULL, NULL, FALSE, FALSE, $checkPermissions);
161
6a488035
TO
162 if (!empty($customFields)) {
163 $addressCustom = CRM_Core_BAO_CustomField::postProcess($params,
6a488035
TO
164 $address->id,
165 'Address',
e9ff5391 166 FALSE,
167 $checkPermissions
6a488035
TO
168 );
169 }
170 if (!empty($addressCustom)) {
171 CRM_Core_BAO_CustomValueTable::store($addressCustom, 'civicrm_address', $address->id);
172 }
173
174 //call the function to sync shared address
175 self::processSharedAddress($address->id, $params);
176
177 // call the function to create shared relationships
178 // we only create create relationship if address is shared by Individual
82ffeed5 179 if (!CRM_Utils_System::isNull($address->master_id)) {
6a488035
TO
180 self::processSharedAddressRelationship($address->master_id, $params);
181 }
182
183 // lets call the post hook only after we've done all the follow on processing
184 CRM_Utils_Hook::post($hook, 'Address', $address->id, $address);
185 }
186
187 return $address;
188 }
189
190 /**
fe482240 191 * Format the address params to have reasonable values.
6a488035 192 *
6a0b768e
TO
193 * @param array $params
194 * (reference ) an assoc array of name/value pairs.
6a488035 195 */
00be9182 196 public static function fixAddress(&$params) {
a7488080 197 if (!empty($params['billing_street_address'])) {
b44e3f84 198 //Check address is coming from online contribution / registration page
6a488035
TO
199 //Fixed :CRM-5076
200 $billing = array(
201 'street_address' => 'billing_street_address',
202 'city' => 'billing_city',
203 'postal_code' => 'billing_postal_code',
204 'state_province' => 'billing_state_province',
205 'state_province_id' => 'billing_state_province_id',
206 'country' => 'billing_country',
207 'country_id' => 'billing_country_id',
208 );
209
210 foreach ($billing as $key => $val) {
211 if ($value = CRM_Utils_Array::value($val, $params)) {
a7488080 212 if (!empty($params[$key])) {
6a488035
TO
213 unset($params[$val]);
214 }
215 else {
216 //add new key and removed old
217 $params[$key] = $value;
218 unset($params[$val]);
219 }
220 }
221 }
222 }
223
224 /* Split the zip and +4, if it's in US format */
a7488080 225 if (!empty($params['postal_code']) &&
6a488035
TO
226 preg_match('/^(\d{4,5})[+-](\d{4})$/',
227 $params['postal_code'],
228 $match
229 )
230 ) {
231 $params['postal_code'] = $match[1];
232 $params['postal_code_suffix'] = $match[2];
233 }
234
235 // add country id if not set
236 if ((!isset($params['country_id']) || !is_numeric($params['country_id'])) &&
237 isset($params['country'])
238 ) {
239 $country = new CRM_Core_DAO_Country();
240 $country->name = $params['country'];
241 if (!$country->find(TRUE)) {
242 $country->name = NULL;
243 $country->iso_code = $params['country'];
244 $country->find(TRUE);
245 }
246 $params['country_id'] = $country->id;
247 }
248
249 // add state_id if state is set
250 if ((!isset($params['state_province_id']) || !is_numeric($params['state_province_id']))
251 && isset($params['state_province'])
252 ) {
253 if (!empty($params['state_province'])) {
254 $state_province = new CRM_Core_DAO_StateProvince();
255 $state_province->name = $params['state_province'];
256
257 // add country id if present
258 if (!empty($params['country_id'])) {
259 $state_province->country_id = $params['country_id'];
260 }
261
262 if (!$state_province->find(TRUE)) {
263 unset($state_province->name);
264 $state_province->abbreviation = $params['state_province'];
265 $state_province->find(TRUE);
266 }
267 $params['state_province_id'] = $state_province->id;
268 if (empty($params['country_id'])) {
269 // set this here since we have it
270 $params['country_id'] = $state_province->country_id;
271 }
272 }
273 else {
274 $params['state_province_id'] = 'null';
275 }
276 }
277
278 // add county id if county is set
279 // CRM-7837
280 if ((!isset($params['county_id']) || !is_numeric($params['county_id']))
281 && isset($params['county']) && !empty($params['county'])
282 ) {
283 $county = new CRM_Core_DAO_County();
284 $county->name = $params['county'];
285
286 if (isset($params['state_province_id'])) {
287 $county->state_province_id = $params['state_province_id'];
288 }
289
290 if ($county->find(TRUE)) {
291 $params['county_id'] = $county->id;
292 }
293 }
294
295 // currently copy values populates empty fields with the string "null"
296 // and hence need to check for the string null
297 if (isset($params['state_province_id']) &&
298 is_numeric($params['state_province_id']) &&
299 (!isset($params['country_id']) || empty($params['country_id']))
300 ) {
301 // since state id present and country id not present, hence lets populate it
302 // jira issue http://issues.civicrm.org/jira/browse/CRM-56
303 $params['country_id'] = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_StateProvince',
304 $params['state_province_id'],
305 'country_id'
306 );
307 }
308
309 //special check to ignore non numeric values if they are not
310 //detected by formRule(sometimes happens due to internet latency), also allow user to unselect state/country
311 if (isset($params['state_province_id'])) {
312 if (empty($params['state_province_id'])) {
313 $params['state_province_id'] = 'null';
314 }
315 elseif (!is_numeric($params['state_province_id']) ||
316 ((int ) $params['state_province_id'] < 1000)
317 ) {
318 // CRM-3393 ( the hacky 1000 check)
319 $params['state_province_id'] = 'null';
320 }
321 }
322
323 if (isset($params['country_id'])) {
324 if (empty($params['country_id'])) {
325 $params['country_id'] = 'null';
326 }
327 elseif (!is_numeric($params['country_id']) ||
328 ((int ) $params['country_id'] < 1000)
329 ) {
330 // CRM-3393 ( the hacky 1000 check)
331 $params['country_id'] = 'null';
332 }
333 }
334
335 // add state and country names from the ids
336 if (isset($params['state_province_id']) && is_numeric($params['state_province_id'])) {
337 $params['state_province'] = CRM_Core_PseudoConstant::stateProvinceAbbreviation($params['state_province_id']);
338 }
339
340 if (isset($params['country_id']) && is_numeric($params['country_id'])) {
341 $params['country'] = CRM_Core_PseudoConstant::country($params['country_id']);
342 }
343
344 $config = CRM_Core_Config::singleton();
345
aaffa79f 346 $asp = Civi::settings()->get('address_standardization_provider');
6a488035
TO
347 // clean up the address via USPS web services if enabled
348 if ($asp === 'USPS' &&
349 $params['country_id'] == 1228
350 ) {
351 CRM_Utils_Address_USPS::checkAddress($params);
352
353 // do street parsing again if enabled, since street address might have changed
6c552737
TO
354 $parseStreetAddress = CRM_Utils_Array::value(
355 'street_address_parsing',
356 CRM_Core_BAO_Setting::valueOptions(
357 CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME,
358 'address_options'
359 ),
360 FALSE
361 );
6a488035
TO
362
363 if ($parseStreetAddress && !empty($params['street_address'])) {
364 foreach (array(
353ffa53
TO
365 'street_number',
366 'street_name',
367 'street_unit',
af9b09df 368 'street_number_suffix',
353ffa53 369 ) as $fld) {
6a488035
TO
370 unset($params[$fld]);
371 }
372 // main parse string.
373 $parseString = CRM_Utils_Array::value('street_address', $params);
374 $parsedFields = CRM_Core_BAO_Address::parseStreetAddress($parseString);
375
376 // merge parse address in to main address block.
377 $params = array_merge($params, $parsedFields);
378 }
379 }
380
b48c1467
WDC
381 // check if geocode should be skipped (can be forced with an optional parameter through the api)
382 $skip_geocode = (isset($params['skip_geocode']) && $params['skip_geocode']) ? TRUE : FALSE;
383
6a488035 384 // add latitude and longitude and format address if needed
b48c1467 385 if (!$skip_geocode && !empty($config->geocodeMethod) && ($config->geocodeMethod != 'CRM_Utils_Geocode_OpenStreetMaps') && empty($params['manual_geo_code'])) {
6a488035
TO
386 $class = $config->geocodeMethod;
387 $class::format($params);
388 }
389 }
390
391 /**
fe482240 392 * Check if there is data to create the object.
6a488035 393 *
6a0b768e
TO
394 * @param array $params
395 * (reference ) an assoc array of name/value pairs.
6a488035 396 *
5c766a0b 397 * @return bool
6a488035 398 */
00be9182 399 public static function dataExists(&$params) {
6a488035
TO
400 //check if location type is set if not return false
401 if (!isset($params['location_type_id'])) {
402 return FALSE;
403 }
404
405 $config = CRM_Core_Config::singleton();
406 foreach ($params as $name => $value) {
407 if (in_array($name, array(
353ffa53
TO
408 'is_primary',
409 'location_type_id',
410 'id',
411 'contact_id',
412 'is_billing',
413 'display',
af9b09df 414 'master_id',
353ffa53 415 ))) {
6a488035
TO
416 continue;
417 }
418 elseif (!CRM_Utils_System::isNull($value)) {
419 // name could be country or country id
420 if (substr($name, 0, 7) == 'country') {
421 // make sure its different from the default country
422 // iso code
423 $defaultCountry = $config->defaultContactCountry();
424 // full name
425 $defaultCountryName = $config->defaultContactCountryName();
426
427 if ($defaultCountry) {
428 if ($value == $defaultCountry ||
429 $value == $defaultCountryName ||
430 $value == $config->defaultContactCountry
431 ) {
432 // do nothing
433 }
434 else {
435 return TRUE;
436 }
437 }
438 else {
439 // return if null default
440 return TRUE;
441 }
442 }
443 else {
444 return TRUE;
445 }
446 }
447 }
448
449 return FALSE;
450 }
451
452 /**
453 * Given the list of params in the params array, fetch the object
454 * and store the values in the values array
455 *
6a0b768e
TO
456 * @param array $entityBlock
457 * Associated array of fields.
458 * @param bool $microformat
459 * If microformat output is required.
e63aff1c 460 * @param int|string $fieldName conditional field name
6a488035 461 *
a6c01b45
CW
462 * @return array
463 * array with address fields
6a488035 464 */
00be9182 465 public static function &getValues($entityBlock, $microformat = FALSE, $fieldName = 'contact_id') {
6a488035
TO
466 if (empty($entityBlock)) {
467 return NULL;
468 }
469 $addresses = array();
470 $address = new CRM_Core_BAO_Address();
471
a7488080 472 if (empty($entityBlock['entity_table'])) {
6a488035
TO
473 $address->$fieldName = CRM_Utils_Array::value($fieldName, $entityBlock);
474 }
475 else {
476 $addressIds = array();
477 $addressIds = self::allEntityAddress($entityBlock);
478
479 if (!empty($addressIds[1])) {
480 $address->id = $addressIds[1];
481 }
482 else {
483 return $addresses;
484 }
485 }
001a6635
JV
486 if (isset($entityBlock['is_billing']) && $entityBlock['is_billing'] == 1) {
487 $address->orderBy('is_billing desc, id');
488 }
489 else {
490 //get primary address as a first block.
491 $address->orderBy('is_primary desc, id');
492 }
6a488035
TO
493
494 $address->find();
495
ac44bb1c 496 $locationTypes = CRM_Core_PseudoConstant::get('CRM_Core_DAO_Address', 'location_type_id');
6a488035
TO
497 $count = 1;
498 while ($address->fetch()) {
499 // deprecate reference.
500 if ($count > 1) {
501 foreach (array(
353ffa53
TO
502 'state',
503 'state_name',
504 'country',
af9b09df 505 'world_region',
353ffa53 506 ) as $fld) {
4f99ca55
TO
507 if (isset($address->$fld)) {
508 unset($address->$fld);
2aa397bc 509 }
6a488035
TO
510 }
511 }
512 $stree = $address->street_address;
513 $values = array();
514 CRM_Core_DAO::storeValues($address, $values);
515
516 // add state and country information: CRM-369
ac44bb1c
WA
517 if (!empty($address->location_type_id)) {
518 $values['location_type'] = CRM_Utils_Array::value($address->location_type_id, $locationTypes);
519 }
6a488035
TO
520 if (!empty($address->state_province_id)) {
521 $address->state = CRM_Core_PseudoConstant::stateProvinceAbbreviation($address->state_province_id, FALSE);
522 $address->state_name = CRM_Core_PseudoConstant::stateProvince($address->state_province_id, FALSE);
523 }
524
525 if (!empty($address->country_id)) {
526 $address->country = CRM_Core_PseudoConstant::country($address->country_id);
527
528 //get world region
529 $regionId = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_Country', $address->country_id, 'region_id');
530
531 $address->world_region = CRM_Core_PseudoConstant::worldregion($regionId);
532 }
533
534 $address->addDisplay($microformat);
535
536 $values['display'] = $address->display;
537 $values['display_text'] = $address->display_text;
538
539 if (is_numeric($address->master_id)) {
540 $values['use_shared_address'] = 1;
541 }
542
543 $addresses[$count] = $values;
544
545 //unset is_primary after first block. Due to some bug in earlier version
546 //there might be more than one primary blocks, hence unset is_primary other than first
547 if ($count > 1) {
548 unset($addresses[$count]['is_primary']);
549 }
550
551 $count++;
552 }
553
554 return $addresses;
555 }
556
557 /**
192d36c5 558 * Add the formatted address to $this-> display.
6a488035 559 *
2a6da8d7 560 * @param bool $microformat
192d36c5 561 * Unexplained parameter that I've always wondered about.
6a488035 562 */
00be9182 563 public function addDisplay($microformat = FALSE) {
6a488035
TO
564 $fields = array(
565 // added this for CRM 1200
566 'address_id' => $this->id,
567 // CRM-4003
568 'address_name' => str_replace('\ 1', ' ', $this->name),
569 'street_address' => $this->street_address,
570 'supplemental_address_1' => $this->supplemental_address_1,
571 'supplemental_address_2' => $this->supplemental_address_2,
572 'city' => $this->city,
573 'state_province_name' => isset($this->state_name) ? $this->state_name : "",
574 'state_province' => isset($this->state) ? $this->state : "",
575 'postal_code' => isset($this->postal_code) ? $this->postal_code : "",
576 'postal_code_suffix' => isset($this->postal_code_suffix) ? $this->postal_code_suffix : "",
577 'country' => isset($this->country) ? $this->country : "",
578 'world_region' => isset($this->world_region) ? $this->world_region : "",
579 );
580
581 if (isset($this->county_id) && $this->county_id) {
582 $fields['county'] = CRM_Core_PseudoConstant::county($this->county_id);
583 }
584 else {
585 $fields['county'] = NULL;
586 }
587
588 $this->display = CRM_Utils_Address::format($fields, NULL, $microformat);
589 $this->display_text = CRM_Utils_Address::format($fields);
590 }
591
592 /**
593 * Get all the addresses for a specified contact_id, with the primary address being first
594 *
6a0b768e
TO
595 * @param int $id
596 * The contact id.
6a488035 597 *
dfcbddc8
DG
598 * @param bool $updateBlankLocInfo
599 *
a6c01b45 600 * @return array
dfcbddc8 601 * the array of adrress data
6a488035 602 */
dfcbddc8 603 public static function allAddress($id, $updateBlankLocInfo = FALSE) {
6a488035
TO
604 if (!$id) {
605 return NULL;
606 }
607
608 $query = "
609SELECT civicrm_address.id as address_id, civicrm_address.location_type_id as location_type_id
610FROM civicrm_contact, civicrm_address
611WHERE civicrm_address.contact_id = civicrm_contact.id AND civicrm_contact.id = %1
612ORDER BY civicrm_address.is_primary DESC, address_id ASC";
76034cf5 613 $params = array(1 => array($id, 'Integer'));
dfcbddc8
DG
614
615 $addresses = array();
6a488035 616 $dao = CRM_Core_DAO::executeQuery($query, $params);
dfcbddc8 617 $count = 1;
6a488035 618 while ($dao->fetch()) {
dfcbddc8
DG
619 if ($updateBlankLocInfo) {
620 $addresses[$count++] = $dao->address_id;
621 }
622 else {
623 $addresses[$dao->location_type_id] = $dao->address_id;
624 }
6a488035
TO
625 }
626 return $addresses;
627 }
628
629 /**
630 * Get all the addresses for a specified location_block id, with the primary address being first
631 *
6a0b768e
TO
632 * @param array $entityElements
633 * The array containing entity_id and.
16b10e64 634 * entity_table name
6a488035 635 *
a6c01b45 636 * @return array
dfcbddc8 637 * the array of adrress data
6a488035 638 */
00be9182 639 public static function allEntityAddress(&$entityElements) {
c927c151 640 $addresses = array();
6a488035
TO
641 if (empty($entityElements)) {
642 return $addresses;
643 }
644
645 $entityId = $entityElements['entity_id'];
646 $entityTable = $entityElements['entity_table'];
647
648 $sql = "
dfcbddc8 649SELECT civicrm_address.id as address_id
6a488035
TO
650FROM civicrm_loc_block loc, civicrm_location_type ltype, civicrm_address, {$entityTable} ev
651WHERE ev.id = %1
652 AND loc.id = ev.loc_block_id
653 AND civicrm_address.id IN (loc.address_id, loc.address_2_id)
654 AND ltype.id = civicrm_address.location_type_id
655ORDER BY civicrm_address.is_primary DESC, civicrm_address.location_type_id DESC, address_id ASC ";
656
657 $params = array(1 => array($entityId, 'Integer'));
6a488035 658 $dao = CRM_Core_DAO::executeQuery($sql, $params);
dfcbddc8 659 $locationCount = 1;
6a488035 660 while ($dao->fetch()) {
dfcbddc8
DG
661 $addresses[$locationCount] = $dao->address_id;
662 $locationCount++;
6a488035
TO
663 }
664 return $addresses;
665 }
666
6a488035 667 /**
fe482240 668 * Get address sequence.
6a488035 669 *
a6c01b45 670 * @return array
16b10e64 671 * Array of address sequence.
6a488035 672 */
00be9182 673 public static function addressSequence() {
6a488035
TO
674 $config = CRM_Core_Config::singleton();
675 $addressSequence = $config->addressSequence();
676
677 $countryState = $cityPostal = FALSE;
678 foreach ($addressSequence as $key => $field) {
679 if (
680 in_array($field, array('country', 'state_province')) &&
681 !$countryState
682 ) {
683 $countryState = TRUE;
684 $addressSequence[$key] = 'country_state_province';
685 }
686 elseif (
687 in_array($field, array('city', 'postal_code')) &&
688 !$cityPostal
689 ) {
690 $cityPostal = TRUE;
691 $addressSequence[$key] = 'city_postal_code';
692 }
693 elseif (
353ffa53 694 in_array($field, array('country', 'state_province', 'city', 'postal_code'))
6a488035
TO
695 ) {
696 unset($addressSequence[$key]);
697 }
698 }
699
700 return $addressSequence;
701 }
702
703 /**
704 * Parse given street address string in to street_name,
705 * street_unit, street_number and street_number_suffix
706 * eg "54A Excelsior Ave. Apt 1C", or "917 1/2 Elm Street"
707 *
708 * NB: civic street formats for en_CA and fr_CA used by default if those locales are active
709 * otherwise en_US format is default action
710 *
6c552737
TO
711 * @param string $streetAddress
712 * Street address including number and apt.
713 * @param string $locale
714 * Locale used to parse address.
6a488035 715 *
a6c01b45
CW
716 * @return array
717 * parsed fields values.
6a488035 718 */
00be9182 719 public static function parseStreetAddress($streetAddress, $locale = NULL) {
6a488035
TO
720 $config = CRM_Core_Config::singleton();
721
722 /* locales supported include:
723 * en_US - http://pe.usps.com/cpim/ftp/pubs/pub28/pub28.pdf
724 * en_CA - http://www.canadapost.ca/tools/pg/manual/PGaddress-e.asp
725 * fr_CA - http://www.canadapost.ca/tools/pg/manual/PGaddress-f.asp
726 * NB: common use of comma after street number also supported
727 * default is en_US
728 */
729
730 $supportedLocalesForParsing = array('en_US', 'en_CA', 'fr_CA');
731 if (!$locale) {
732 $locale = $config->lcMessages;
733 }
734 // as different locale explicitly requested but is not available, display warning message and set $locale = 'en_US'
735 if (!in_array($locale, $supportedLocalesForParsing)) {
736 CRM_Core_Session::setStatus(ts('Unsupported locale specified to parseStreetAddress: %1. Proceeding with en_US locale.', array(1 => $locale)), ts('Unsupported Locale'), 'alert');
737 $locale = 'en_US';
738 }
689cecfd 739 $emptyParseFields = $parseFields = array(
6a488035
TO
740 'street_name' => '',
741 'street_unit' => '',
742 'street_number' => '',
743 'street_number_suffix' => '',
744 );
745
746 if (empty($streetAddress)) {
747 return $parseFields;
748 }
749
750 $streetAddress = trim($streetAddress);
751
752 $matches = array();
753 if (in_array($locale, array(
353ffa53 754 'en_CA',
af9b09df 755 'fr_CA',
353ffa53
TO
756 )) && preg_match('/^([A-Za-z0-9]+)[ ]*\-[ ]*/', $streetAddress, $matches)
757 ) {
6a488035
TO
758 $parseFields['street_unit'] = $matches[1];
759 // unset from rest of street address
760 $streetAddress = preg_replace('/^([A-Za-z0-9]+)[ ]*\-[ ]*/', '', $streetAddress);
761 }
762
763 // get street number and suffix.
764 $matches = array();
765 //alter street number/suffix handling so that we accept -digit
766 if (preg_match('/^[A-Za-z0-9]+([\S]+)/', $streetAddress, $matches)) {
767 // check that $matches[0] is numeric, else assume no street number
768 if (preg_match('/^(\d+)/', $matches[0])) {
769 $streetNumAndSuffix = $matches[0];
770
771 // get street number.
772 $matches = array();
773 if (preg_match('/^(\d+)/', $streetNumAndSuffix, $matches)) {
774 $parseFields['street_number'] = $matches[0];
775 $suffix = preg_replace('/^(\d+)/', '', $streetNumAndSuffix);
776 $parseFields['street_number_suffix'] = trim($suffix);
777 }
778
779 // unset from main street address.
780 $streetAddress = preg_replace('/^[A-Za-z0-9]+([\S]+)/', '', $streetAddress);
781 $streetAddress = trim($streetAddress);
782 }
783 }
784 elseif (preg_match('/^(\d+)/', $streetAddress, $matches)) {
785 $parseFields['street_number'] = $matches[0];
786 // unset from main street address.
787 $streetAddress = preg_replace('/^(\d+)/', '', $streetAddress);
788 $streetAddress = trim($streetAddress);
789 }
790
791 // suffix might be like 1/2
792 $matches = array();
793 if (preg_match('/^\d\/\d/', $streetAddress, $matches)) {
794 $parseFields['street_number_suffix'] .= $matches[0];
795
796 // unset from main street address.
797 $streetAddress = preg_replace('/^\d+\/\d+/', '', $streetAddress);
798 $streetAddress = trim($streetAddress);
799 }
800
801 // now get the street unit.
802 // supportable street unit formats.
803 $streetUnitFormats = array(
353ffa53
TO
804 'APT',
805 'APARTMENT',
806 'BSMT',
807 'BASEMENT',
808 'BLDG',
809 'BUILDING',
810 'DEPT',
811 'DEPARTMENT',
812 'FL',
813 'FLOOR',
814 'FRNT',
815 'FRONT',
816 'HNGR',
817 'HANGER',
818 'LBBY',
819 'LOBBY',
820 'LOWR',
821 'LOWER',
822 'OFC',
823 'OFFICE',
824 'PH',
825 'PENTHOUSE',
826 'TRLR',
827 'TRAILER',
828 'UPPR',
829 'RM',
830 'ROOM',
831 'SIDE',
832 'SLIP',
833 'KEY',
834 'LOT',
835 'PIER',
836 'REAR',
837 'SPC',
838 'SPACE',
839 'STOP',
840 'STE',
841 'SUITE',
842 'UNIT',
843 '#',
6a488035
TO
844 );
845
846 // overwriting $streetUnitFormats for 'en_CA' and 'fr_CA' locale
847 if (in_array($locale, array(
353ffa53 848 'en_CA',
af9b09df 849 'fr_CA',
353ffa53 850 ))) {
6a488035
TO
851 $streetUnitFormats = array('APT', 'APP', 'SUITE', 'BUREAU', 'UNIT');
852 }
689cecfd
EM
853 //@todo per CRM-14459 this regex picks up words with the string in them - e.g APT picks up
854 //Captain - presuming fixing regex (& adding test) to ensure a-z does not preced string will fix
6a488035
TO
855 $streetUnitPreg = '/(' . implode('|\s', $streetUnitFormats) . ')(.+)?/i';
856 $matches = array();
857 if (preg_match($streetUnitPreg, $streetAddress, $matches)) {
858 $parseFields['street_unit'] = trim($matches[0]);
859 $streetAddress = str_replace($matches[0], '', $streetAddress);
860 $streetAddress = trim($streetAddress);
861 }
862
863 // consider remaining string as street name.
864 $parseFields['street_name'] = $streetAddress;
865
866 //run parsed fields through stripSpaces to clean
867 foreach ($parseFields as $parseField => $value) {
868 $parseFields[$parseField] = CRM_Utils_String::stripSpaces($value);
869 }
689cecfd
EM
870 //CRM-14459 if the field is too long we should assume it didn't get it right & skip rather than allow
871 // the DB to fatal
872 $fields = CRM_Core_BAO_Address::fields();
873 foreach ($fields as $fieldname => $field) {
22e263ad 874 if (!empty($field['maxlength']) && strlen(CRM_Utils_Array::value($fieldname, $parseFields)) > $field['maxlength']) {
689cecfd
EM
875 return $emptyParseFields;
876 }
877 }
6a488035
TO
878
879 return $parseFields;
880 }
881
882 /**
eceb18cc 883 * Validate the address fields based on the address options enabled.
6a488035
TO
884 * in the Address Settings
885 *
6a0b768e
TO
886 * @param array $fields
887 * An array of importable/exportable contact fields.
6a488035 888 *
a6c01b45
CW
889 * @return array
890 * an array of contact fields and only the enabled address options
6a488035 891 */
00be9182 892 public static function validateAddressOptions($fields) {
6a488035
TO
893 static $addressOptions = NULL;
894 if (!$addressOptions) {
6c552737
TO
895 $addressOptions = CRM_Core_BAO_Setting::valueOptions(
896 CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME,
897 'address_options'
898 );
6a488035
TO
899 }
900
901 if (is_array($fields) && !empty($fields)) {
902 foreach ($addressOptions as $key => $value) {
903 if (!$value && isset($fields[$key])) {
904 unset($fields[$key]);
905 }
906 }
907 }
908 return $fields;
909 }
910
911 /**
fe482240 912 * Check if current address is used by any other contacts.
6a488035 913 *
6a0b768e
TO
914 * @param int $addressId
915 * Address id.
6a488035 916 *
72b3a70c
CW
917 * @return int
918 * count of contacts that use this shared address
6a488035 919 */
00be9182 920 public static function checkContactSharedAddress($addressId) {
6a488035
TO
921 $query = 'SELECT count(id) FROM civicrm_address WHERE master_id = %1';
922 return CRM_Core_DAO::singleValueQuery($query, array(1 => array($addressId, 'Integer')));
923 }
924
925 /**
fe482240 926 * Check if current address fields are shared with any other address.
6a488035 927 *
6a0b768e
TO
928 * @param array $fields
929 * Address fields in profile.
930 * @param int $contactId
931 * Contact id.
6a488035 932 *
6a488035 933 */
00be9182 934 public static function checkContactSharedAddressFields(&$fields, $contactId) {
6a488035
TO
935 if (!$contactId || !is_array($fields) || empty($fields)) {
936 return;
937 }
938
939 $sharedLocations = array();
940
941 $query = "
942SELECT is_primary,
943 location_type_id
944 FROM civicrm_address
945 WHERE contact_id = %1
946 AND master_id IS NOT NULL";
947
948 $dao = CRM_Core_DAO::executeQuery($query, array(1 => array($contactId, 'Positive')));
949 while ($dao->fetch()) {
950 $sharedLocations[$dao->location_type_id] = $dao->location_type_id;
951 if ($dao->is_primary) {
952 $sharedLocations['Primary'] = 'Primary';
953 }
954 }
955
956 //no need to process further.
957 if (empty($sharedLocations)) {
958 return;
959 }
960
961 $addressFields = array(
962 'city',
963 'county',
964 'country',
965 'geo_code_1',
966 'geo_code_2',
967 'postal_code',
968 'address_name',
969 'state_province',
970 'street_address',
971 'postal_code_suffix',
972 'supplemental_address_1',
973 'supplemental_address_2',
974 );
975
976 foreach ($fields as $name => & $values) {
977 if (!is_array($values) || empty($values)) {
978 continue;
979 }
980
981 $nameVal = explode('-', $values['name']);
982 $fldName = CRM_Utils_Array::value(0, $nameVal);
983 $locType = CRM_Utils_Array::value(1, $nameVal);
a7488080 984 if (!empty($values['location_type_id'])) {
6a488035
TO
985 $locType = $values['location_type_id'];
986 }
987
988 if (in_array($fldName, $addressFields) &&
989 in_array($locType, $sharedLocations)
990 ) {
991 $values['is_shared'] = TRUE;
992 }
993 }
994 }
995
996 /**
fe482240 997 * Update the shared addresses if master address is modified.
6a488035 998 *
6a0b768e
TO
999 * @param int $addressId
1000 * Address id.
1001 * @param array $params
1002 * Associated array of address params.
6a488035 1003 */
00be9182 1004 public static function processSharedAddress($addressId, $params) {
6a488035
TO
1005 $query = 'SELECT id FROM civicrm_address WHERE master_id = %1';
1006 $dao = CRM_Core_DAO::executeQuery($query, array(1 => array($addressId, 'Integer')));
1007
1008 // unset contact id
1009 $skipFields = array('is_primary', 'location_type_id', 'is_billing', 'master_id', 'contact_id');
1010 foreach ($skipFields as $value) {
1011 unset($params[$value]);
1012 }
1013
1014 $addressDAO = new CRM_Core_DAO_Address();
1015 while ($dao->fetch()) {
1016 $addressDAO->copyValues($params);
1017 $addressDAO->id = $dao->id;
1018 $addressDAO->save();
1019 $addressDAO->free();
1020 }
1021 }
1022
8bdfc216 1023 /**
fe482240 1024 * Merge contacts with the Same address to get one shared label.
6a0b768e
TO
1025 * @param array $rows
1026 * Array[contact_id][contactDetails].
8bdfc216 1027 */
1028 public static function mergeSameAddress(&$rows) {
1029 $uniqueAddress = array();
1030 foreach (array_keys($rows) as $rowID) {
1031 // load complete address as array key
6c552737
TO
1032 $address = trim($rows[$rowID]['street_address'])
1033 . trim($rows[$rowID]['city'])
1034 . trim($rows[$rowID]['state_province'])
1035 . trim($rows[$rowID]['postal_code'])
1036 . trim($rows[$rowID]['country']);
8bdfc216 1037 if (isset($rows[$rowID]['last_name'])) {
1038 $name = $rows[$rowID]['last_name'];
1039 }
1040 else {
1041 $name = $rows[$rowID]['display_name'];
1042 }
1043
1044 // CRM-15120
1045 $formatted = array(
1046 'first_name' => $rows[$rowID]['first_name'],
21dfd5f5 1047 'individual_prefix' => $rows[$rowID]['individual_prefix'],
8bdfc216 1048 );
aaffa79f 1049 $format = Civi::settings()->get('display_name_format');
8bdfc216 1050 $firstNameWithPrefix = CRM_Utils_Address::format($formatted, $format, FALSE, FALSE, TRUE);
1051 $firstNameWithPrefix = trim($firstNameWithPrefix);
1052
1053 // fill uniqueAddress array with last/first name tree
1054 if (isset($uniqueAddress[$address])) {
1055 $uniqueAddress[$address]['names'][$name][$firstNameWithPrefix]['first_name'] = $rows[$rowID]['first_name'];
1056 $uniqueAddress[$address]['names'][$name][$firstNameWithPrefix]['addressee_display'] = $rows[$rowID]['addressee_display'];
1057 // drop unnecessary rows
1058 unset($rows[$rowID]);
1059 // this is the first listing at this address
1060 }
1061 else {
1062 $uniqueAddress[$address]['ID'] = $rowID;
1063 $uniqueAddress[$address]['names'][$name][$firstNameWithPrefix]['first_name'] = $rows[$rowID]['first_name'];
1064 $uniqueAddress[$address]['names'][$name][$firstNameWithPrefix]['addressee_display'] = $rows[$rowID]['addressee_display'];
1065 }
1066 }
1067 foreach ($uniqueAddress as $address => $data) {
1068 // copy data back to $rows
1069 $count = 0;
1070 // one last name list per row
1071 foreach ($data['names'] as $last_name => $first_names) {
1072 // too many to list
1073 if ($count > 2) {
1074 break;
1075 }
9b873358 1076 if (count($first_names) == 1) {
2aa397bc
TO
1077 $family = $first_names[current(array_keys($first_names))]['addressee_display'];
1078 }
1079 else {
1080 // collapse the tree to summarize
1081 $family = trim(implode(" & ", array_keys($first_names)) . " " . $last_name);
1082 }
1083 if ($count) {
1084 $processedNames .= "\n" . $family;
1085 }
1086 else {
1087 // build display_name string
1088 $processedNames = $family;
1089 }
8bdfc216 1090 $count++;
1091 }
1092 $rows[$data['ID']]['addressee'] = $rows[$data['ID']]['addressee_display'] = $rows[$data['ID']]['display_name'] = $processedNames;
1093 }
1094 }
1095
6a488035 1096 /**
fe482240 1097 * Create relationship between contacts who share an address.
6a488035
TO
1098 *
1099 * Note that currently we create relationship only for Individual contacts
1100 * Individual + Household and Individual + Orgnization
1101 *
6a0b768e
TO
1102 * @param int $masterAddressId
1103 * Master address id.
1104 * @param array $params
1105 * Associated array of submitted values.
6a488035 1106 */
00be9182 1107 public static function processSharedAddressRelationship($masterAddressId, $params) {
6a488035
TO
1108 // get the contact type of contact being edited / created
1109 $currentContactType = CRM_Contact_BAO_Contact::getContactType($params['contact_id']);
1110 $currentContactId = $params['contact_id'];
1111
1112 // if current contact is not of type individual return
1113 if ($currentContactType != 'Individual') {
1114 return;
1115 }
1116
1117 // get the contact id and contact type of shared contact
1118 // check the contact type of shared contact, return if it is of type Individual
6a488035
TO
1119 $query = 'SELECT cc.id, cc.contact_type
1120 FROM civicrm_contact cc INNER JOIN civicrm_address ca ON cc.id = ca.contact_id
1121 WHERE ca.id = %1';
1122
1123 $dao = CRM_Core_DAO::executeQuery($query, array(1 => array($masterAddressId, 'Integer')));
6a488035
TO
1124 $dao->fetch();
1125
1126 // if current contact is not of type individual return, since we don't create relationship between
1127 // 2 individuals
1128 if ($dao->contact_type == 'Individual') {
1129 return;
1130 }
1131 $sharedContactType = $dao->contact_type;
1132 $sharedContactId = $dao->id;
1133
1134 // create relationship between ontacts who share an address
1135 if ($sharedContactType == 'Organization') {
1136 return CRM_Contact_BAO_Contact_Utils::createCurrentEmployerRelationship($currentContactId, $sharedContactId);
1137 }
6a488035 1138
82ffeed5 1139 // get the relationship type id of "Household Member of"
1140 $relTypeId = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_RelationshipType', 'Household Member of', 'id', 'name_a_b');
6a488035
TO
1141
1142 if (!$relTypeId) {
82ffeed5 1143 CRM_Core_Error::fatal(ts("You seem to have deleted the relationship type 'Household Member of'"));
1144 }
1145
1146 $relParam = array(
1147 'is_active' => TRUE,
1148 'relationship_type_id' => $relTypeId,
1149 'contact_id_a' => $currentContactId,
1150 'contact_id_b' => $sharedContactId,
1151 );
1152
1153 // If already there is a relationship record of $relParam criteria, avoid creating relationship again or else
1154 // it will casue CRM-16588 as the Duplicate Relationship Exception will revert other contact field values on update
9272d8b5 1155 if (CRM_Contact_BAO_Relationship::checkDuplicateRelationship($relParam, $currentContactId, $sharedContactId)) {
82ffeed5 1156 return;
6a488035
TO
1157 }
1158
a7ef8c9d
EM
1159 try {
1160 // create relationship
82ffeed5 1161 civicrm_api3('relationship', 'create', $relParam);
a7ef8c9d
EM
1162 }
1163 catch (CiviCRM_API3_Exception $e) {
1164 // We catch and ignore here because this has historically been a best-effort relationship create call.
1165 // presumably it could refuse due to duplication or similar and we would ignore that.
1166 }
6a488035
TO
1167 }
1168
1169 /**
fe482240 1170 * Check and set the status for shared address delete.
6a488035 1171 *
6a0b768e
TO
1172 * @param int $addressId
1173 * Address id.
1174 * @param int $contactId
1175 * Contact id.
1176 * @param bool $returnStatus
1177 * By default false.
6a488035 1178 *
a6c01b45 1179 * @return string
6a488035 1180 */
00be9182 1181 public static function setSharedAddressDeleteStatus($addressId = NULL, $contactId = NULL, $returnStatus = FALSE) {
6a488035
TO
1182 // check if address that is being deleted has any shared
1183 if ($addressId) {
1184 $entityId = $addressId;
1185 $query = 'SELECT cc.id, cc.display_name
1186 FROM civicrm_contact cc INNER JOIN civicrm_address ca ON cc.id = ca.contact_id
1187 WHERE ca.master_id = %1';
1188 }
1189 else {
1190 $entityId = $contactId;
1191 $query = 'SELECT cc.id, cc.display_name
1192 FROM civicrm_address ca1
1193 INNER JOIN civicrm_address ca2 ON ca1.id = ca2.master_id
1194 INNER JOIN civicrm_contact cc ON ca2.contact_id = cc.id
1195 WHERE ca1.contact_id = %1';
1196 }
1197
1198 $dao = CRM_Core_DAO::executeQuery($query, array(1 => array($entityId, 'Integer')));
1199
1200 $deleteStatus = array();
1201 $sharedContactList = array();
1202 $statusMessage = NULL;
1203 $addressCount = 0;
1204 while ($dao->fetch()) {
1205 if (empty($deleteStatus)) {
1206 $deleteStatus[] = ts('The following contact(s) have address records which were shared with the address you removed from this contact. These address records are no longer shared - but they have not been removed or altered.');
1207 }
1208
1209 $contactViewUrl = CRM_Utils_System::url('civicrm/contact/view', "reset=1&cid={$dao->id}");
1210 $sharedContactList[] = "<a href='{$contactViewUrl}'>{$dao->display_name}</a>";
1211 $deleteStatus[] = "<a href='{$contactViewUrl}'>{$dao->display_name}</a>";
1212
1213 $addressCount++;
1214 }
1215
1216 if (!empty($deleteStatus)) {
1217 $statusMessage = implode('<br/>', $deleteStatus) . '<br/>';
1218 }
1219
1220 if (!$returnStatus) {
1221 CRM_Core_Session::setStatus($statusMessage, '', 'info');
1222 }
1223 else {
1224 return array(
1225 'contactList' => $sharedContactList,
1226 'count' => $addressCount,
1227 );
1228 }
1229 }
12445e1c
CW
1230
1231 /**
fe482240 1232 * Call common delete function.
ad37ac8e 1233 *
1234 * @param int $id
1235 *
1236 * @return bool
12445e1c 1237 */
00be9182 1238 public static function del($id) {
a65e2e55 1239 return CRM_Contact_BAO_Contact::deleteObjectWithPrimary('Address', $id);
12445e1c 1240 }
dc86f881
CW
1241
1242 /**
1243 * Get options for a given address field.
1244 * @see CRM_Core_DAO::buildOptions
1245 *
1246 * TODO: Should we always assume chainselect? What fn should be responsible for controlling that flow?
1247 * TODO: In context of chainselect, what to return if e.g. a country has no states?
1248 *
6a0b768e
TO
1249 * @param string $fieldName
1250 * @param string $context
a1a2a83d 1251 * @see CRM_Core_DAO::buildOptionsContext
6a0b768e 1252 * @param array $props
16b10e64 1253 * whatever is known about this dao object.
77b97be7 1254 *
5c766a0b 1255 * @return array|bool
dc86f881
CW
1256 */
1257 public static function buildOptions($fieldName, $context = NULL, $props = array()) {
1258 $params = array();
1259 // Special logic for fields whose options depend on context or properties
1260 switch ($fieldName) {
1261 // Filter state_province list based on chosen country or site defaults
1262 case 'state_province_id':
d0bfb983 1263 case 'state_province_name':
1264 case 'state_province':
1265 // change $fieldName to DB specific names.
1266 $fieldName = 'state_province_id';
dc86f881
CW
1267 if (empty($props['country_id'])) {
1268 $config = CRM_Core_Config::singleton();
1269 if (!empty($config->provinceLimit)) {
1270 $props['country_id'] = $config->provinceLimit;
1271 }
1272 else {
1273 $props['country_id'] = $config->defaultContactCountry;
1274 }
1275 }
578d346d 1276 if (!empty($props['country_id']) && $context !== 'validate') {
dc86f881
CW
1277 $params['condition'] = 'country_id IN (' . implode(',', (array) $props['country_id']) . ')';
1278 }
1279 break;
2aa397bc 1280
dc86f881
CW
1281 // Filter country list based on site defaults
1282 case 'country_id':
d0bfb983 1283 case 'country':
1284 // change $fieldName to DB specific names.
1285 $fieldName = 'country_id';
786ad6e1
CW
1286 if ($context != 'get' && $context != 'validate') {
1287 $config = CRM_Core_Config::singleton();
1288 if (!empty($config->countryLimit) && is_array($config->countryLimit)) {
1289 $params['condition'] = 'id IN (' . implode(',', $config->countryLimit) . ')';
1290 }
dc86f881
CW
1291 }
1292 break;
2aa397bc 1293
dc86f881
CW
1294 // Filter county list based on chosen state
1295 case 'county_id':
1296 if (!empty($props['state_province_id'])) {
1297 $params['condition'] = 'state_province_id IN (' . implode(',', (array) $props['state_province_id']) . ')';
1298 }
1299 break;
2aa397bc 1300
c7130c3e
CW
1301 // Not a real field in this entity
1302 case 'world_region':
3493947a 1303 case 'worldregion':
1304 case 'worldregion_id':
c7130c3e 1305 return CRM_Core_PseudoConstant::worldRegion();
dc86f881 1306 }
786ad6e1 1307 return CRM_Core_PseudoConstant::get(__CLASS__, $fieldName, $params, $context);
dc86f881 1308 }
96025800 1309
a7488080 1310}