Fix metadata on member export
[civicrm-core.git] / CRM / Core / BAO / UFField.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2019 |
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 +--------------------------------------------------------------------+
26 */
27
28 /**
29 *
30 * @package CRM
31 * @copyright CiviCRM LLC (c) 2004-2019
32 */
33
34 /**
35 * This class contains function for UFField.
36 */
37 class CRM_Core_BAO_UFField extends CRM_Core_DAO_UFField {
38
39 /**
40 * Batch entry fields.
41 * @var array
42 */
43 private static $_contriBatchEntryFields = NULL;
44 private static $_memberBatchEntryFields = NULL;
45
46 /**
47 * Create UFField object.
48 *
49 * @param array $params
50 * Array per getfields metadata.
51 *
52 * @return \CRM_Core_BAO_UFField
53 * @throws \API_Exception
54 */
55 public static function create($params) {
56 $id = CRM_Utils_Array::value('id', $params);
57
58 // Merge in data from existing field
59 if (!empty($id)) {
60 $UFField = new CRM_Core_BAO_UFField();
61 $UFField->id = $params['id'];
62 if ($UFField->find(TRUE)) {
63 $defaults = $UFField->toArray();
64 // This will be calculated based on field name
65 unset($defaults['field_type']);
66 $params += $defaults;
67 }
68 else {
69 throw new API_Exception("UFFIeld id {$params['id']} not found.");
70 }
71 }
72
73 // Validate field_name
74 if (strpos($params['field_name'], 'formatting') !== 0 && !CRM_Core_BAO_UFField::isValidFieldName($params['field_name'])) {
75 throw new API_Exception('The field_name is not valid');
76 }
77
78 // Supply default label if not set
79 if (empty($id) && !isset($params['label'])) {
80 $params['label'] = self::getAvailableFieldTitles()[$params['field_name']];
81 }
82
83 // Supply field_type if not set
84 if (empty($params['field_type']) && strpos($params['field_name'], 'formatting') !== 0) {
85 $params['field_type'] = CRM_Utils_Array::pathGet(self::getAvailableFieldsFlat(), [$params['field_name'], 'field_type']);
86 }
87 elseif (empty($params['field_type'])) {
88 $params['field_type'] = 'Formatting';
89 }
90
91 // Generate unique name for formatting fields
92 if ($params['field_name'] === 'formatting') {
93 $params['field_name'] = 'formatting_' . substr(uniqid(), -4);
94 }
95
96 if (self::duplicateField($params)) {
97 throw new API_Exception("The field was not added. It already exists in this profile.");
98 }
99
100 //@todo why is this even optional? Surely weight should just be 'managed' ??
101 if (CRM_Utils_Array::value('option.autoweight', $params, TRUE)) {
102 $params['weight'] = CRM_Core_BAO_UFField::autoWeight($params);
103 }
104
105 // Set values for uf field properties and save
106 $ufField = new CRM_Core_DAO_UFField();
107 $ufField->copyValues($params);
108
109 if ($params['field_name'] == 'url') {
110 $ufField->location_type_id = 'null';
111 }
112 else {
113 $ufField->website_type_id = 'null';
114 }
115 if (!strstr($params['field_name'], 'phone')) {
116 $ufField->phone_type_id = 'null';
117 }
118
119 $ufField->save();
120
121 $fieldsType = CRM_Core_BAO_UFGroup::calculateGroupType($ufField->uf_group_id, TRUE);
122 CRM_Core_BAO_UFGroup::updateGroupTypes($ufField->uf_group_id, $fieldsType);
123
124 civicrm_api3('profile', 'getfields', ['cache_clear' => TRUE]);
125 return $ufField;
126 }
127
128 /**
129 * Fetch object based on array of properties.
130 *
131 * @param array $params
132 * (reference ) an assoc array of name/value pairs.
133 * @param array $defaults
134 * (reference ) an assoc array to hold the flattened values.
135 *
136 * @return CRM_Core_BAO_UFField
137 */
138 public static function retrieve(&$params, &$defaults) {
139 return CRM_Core_DAO::commonRetrieve('CRM_Core_DAO_UFField', $params, $defaults);
140 }
141
142 /**
143 * Update the is_active flag in the db.
144 *
145 * @param int $id
146 * Id of the database record.
147 * @param bool $is_active
148 * Value we want to set the is_active field.
149 *
150 * @return bool
151 * true if we found and updated the object, else false
152 */
153 public static function setIsActive($id, $is_active) {
154 //check if custom data profile field is disabled
155 if ($is_active) {
156 if (CRM_Core_BAO_UFField::checkUFStatus($id)) {
157 return CRM_Core_DAO::setFieldValue('CRM_Core_DAO_UFField', $id, 'is_active', $is_active);
158 }
159 else {
160 CRM_Core_Session::setStatus(ts('Cannot enable this UF field since the used custom field is disabled.'), ts('Check Custom Field'), 'error');
161 }
162 }
163 else {
164 return CRM_Core_DAO::setFieldValue('CRM_Core_DAO_UFField', $id, 'is_active', $is_active);
165 }
166 }
167
168 /**
169 * Delete the profile Field.
170 *
171 * @param int $id
172 * Field Id.
173 *
174 * @return bool
175 *
176 */
177 public static function del($id) {
178 //delete field field
179 $field = new CRM_Core_DAO_UFField();
180 $field->id = $id;
181 $field->delete();
182 return TRUE;
183 }
184
185 /**
186 * Check duplicate for duplicate field in a group.
187 *
188 * @param array $params
189 * An associative array with field and values.
190 *
191 * @return bool
192 */
193 public static function duplicateField($params) {
194 $ufField = new CRM_Core_DAO_UFField();
195 $ufField->uf_group_id = CRM_Utils_Array::value('uf_group_id', $params);
196 $ufField->field_type = CRM_Utils_Array::value('field_type', $params);
197 $ufField->field_name = CRM_Utils_Array::value('field_name', $params);
198 $ufField->website_type_id = CRM_Utils_Array::value('website_type_id', $params);
199 if (is_null(CRM_Utils_Array::value('location_type_id', $params, ''))) {
200 // primary location type have NULL value in DB
201 $ufField->whereAdd("location_type_id IS NULL");
202 }
203 else {
204 $ufField->location_type_id = CRM_Utils_Array::value('location_type_id', $params);
205 }
206 $ufField->phone_type_id = CRM_Utils_Array::value('phone_type_id', $params);;
207
208 if (!empty($params['id'])) {
209 $ufField->whereAdd("id <> " . $params['id']);
210 }
211
212 return (bool) $ufField->find(TRUE);
213 }
214
215 /**
216 * Does profile consists of a multi-record custom field.
217 *
218 * @param int $gId
219 *
220 * @return bool
221 */
222 public static function checkMultiRecordFieldExists($gId) {
223 $queryString = "SELECT f.field_name
224 FROM civicrm_uf_field f, civicrm_uf_group g
225 WHERE f.uf_group_id = g.id
226 AND g.id = %1 AND f.field_name LIKE 'custom%'";
227 $p = [1 => [$gId, 'Integer']];
228 $dao = CRM_Core_DAO::executeQuery($queryString, $p);
229 $customFieldIds = [];
230 $isMultiRecordFieldPresent = FALSE;
231 while ($dao->fetch()) {
232 if ($customId = CRM_Core_BAO_CustomField::getKeyID($dao->field_name)) {
233 if (is_numeric($customId)) {
234 $customFieldIds[] = $customId;
235 }
236 }
237 }
238
239 if (!empty($customFieldIds) && count($customFieldIds) == 1) {
240 $customFieldId = array_pop($customFieldIds);
241 $isMultiRecordFieldPresent = CRM_Core_BAO_CustomField::isMultiRecordField($customFieldId);
242 }
243 elseif (count($customFieldIds) > 1) {
244 $customFieldIds = implode(", ", $customFieldIds);
245 $queryString = "
246 SELECT cg.id as cgId
247 FROM civicrm_custom_group cg
248 INNER JOIN civicrm_custom_field cf
249 ON cg.id = cf.custom_group_id
250 WHERE cf.id IN (" . $customFieldIds . ") AND is_multiple = 1 LIMIT 0,1";
251
252 $dao = CRM_Core_DAO::executeQuery($queryString);
253 if ($dao->fetch()) {
254 $isMultiRecordFieldPresent = ($dao->cgId) ? $dao->cgId : FALSE;
255 }
256 }
257
258 return $isMultiRecordFieldPresent;
259 }
260
261 /**
262 * Automatically determine one weight and modify others.
263 *
264 * @param array $params
265 * UFField record, e.g. with 'weight', 'uf_group_id', and 'field_id'.
266 * @return int
267 */
268 public static function autoWeight($params) {
269 // fix for CRM-316
270 $oldWeight = NULL;
271
272 if (!empty($params['field_id']) || !empty($params['id'])) {
273 $oldWeight = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_UFField', !empty($params['id']) ? $params['id'] : $params['field_id'], 'weight', 'id');
274 }
275 $fieldValues = ['uf_group_id' => !empty($params['uf_group_id']) ? $params['uf_group_id'] : $params['group_id']];
276 return CRM_Utils_Weight::updateOtherWeights('CRM_Core_DAO_UFField', $oldWeight, CRM_Utils_Array::value('weight', $params, 0), $fieldValues);
277 }
278
279 /**
280 * Enable/disable profile field given a custom field id
281 *
282 * @param int $customFieldId
283 * Custom field id.
284 * @param bool $is_active
285 * Set the is_active field.
286 */
287 public static function setUFField($customFieldId, $is_active) {
288 // Find the profile id given custom field.
289 $ufField = new CRM_Core_DAO_UFField();
290 $ufField->field_name = "custom_" . $customFieldId;
291
292 $ufField->find();
293 while ($ufField->fetch()) {
294 // Enable/ disable profile.
295 CRM_Core_BAO_UFField::setIsActive($ufField->id, $is_active);
296 }
297 }
298
299 /**
300 * Copy existing profile fields to
301 * new profile from the already built profile
302 *
303 * @param int $old_id
304 * From which we need to copy.
305 * @param bool $new_id
306 * In which to copy.
307 */
308 public static function copy($old_id, $new_id) {
309 $ufField = new CRM_Core_DAO_UFField();
310 $ufField->uf_group_id = $old_id;
311 $ufField->find();
312 while ($ufField->fetch()) {
313 //copy the field records as it is on new ufgroup id
314 $ufField->uf_group_id = $new_id;
315 $ufField->id = NULL;
316 $ufField->save();
317 }
318 }
319
320 /**
321 * Delete profile field given a custom field.
322 *
323 * @param int $customFieldId
324 * ID of the custom field to be deleted.
325 */
326 public static function delUFField($customFieldId) {
327 //find the profile id given custom field id
328 $ufField = new CRM_Core_DAO_UFField();
329 $ufField->field_name = "custom_" . $customFieldId;
330
331 $ufField->find();
332 while ($ufField->fetch()) {
333 //enable/ disable profile
334 CRM_Core_BAO_UFField::del($ufField->id);
335 }
336 }
337
338 /**
339 * Enable/disable profile field given a custom group id
340 *
341 * @param int $customGroupId
342 * Custom group id.
343 * @param bool $is_active
344 * Value we want to set the is_active field.
345 */
346 public static function setUFFieldStatus($customGroupId, $is_active) {
347 //find the profile id given custom group id
348 $queryString = "SELECT civicrm_custom_field.id as custom_field_id
349 FROM civicrm_custom_field, civicrm_custom_group
350 WHERE civicrm_custom_field.custom_group_id = civicrm_custom_group.id
351 AND civicrm_custom_group.id = %1";
352 $p = [1 => [$customGroupId, 'Integer']];
353 $dao = CRM_Core_DAO::executeQuery($queryString, $p);
354
355 while ($dao->fetch()) {
356 // Enable/ disable profile.
357 CRM_Core_BAO_UFField::setUFField($dao->custom_field_id, $is_active);
358 }
359 }
360
361 /**
362 * Check the status of custom field used in uf fields.
363 *
364 * @param int $UFFieldId
365 *
366 * @return bool
367 * false if custom field are disabled else true
368 */
369 public static function checkUFStatus($UFFieldId) {
370 $fieldName = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_UFField', $UFFieldId, 'field_name');
371 // return if field is not a custom field
372 if (!$customFieldId = CRM_Core_BAO_CustomField::getKeyID($fieldName)) {
373 return TRUE;
374 }
375
376 $customField = new CRM_Core_DAO_CustomField();
377 $customField->id = $customFieldId;
378 // if uf field is custom field
379 if ($customField->find(TRUE)) {
380 if (!$customField->is_active) {
381 return FALSE;
382 }
383 else {
384 return TRUE;
385 }
386 }
387 }
388
389 /**
390 * Find out whether given profile group using Activity
391 * Profile fields with contact fields
392 *
393 * @param int $ufGroupId
394 *
395 * @return bool
396 */
397 public static function checkContactActivityProfileType($ufGroupId) {
398 $ufGroup = new CRM_Core_DAO_UFGroup();
399 $ufGroup->id = $ufGroupId;
400 $ufGroup->find(TRUE);
401
402 return self::checkContactActivityProfileTypeByGroupType($ufGroup->group_type);
403 }
404
405 /**
406 * FIXME say 10 ha
407 * @param $ufGroupType
408 * @return bool
409 */
410 public static function checkContactActivityProfileTypeByGroupType($ufGroupType) {
411 $profileTypes = [];
412 if ($ufGroupType) {
413 $typeParts = explode(CRM_Core_DAO::VALUE_SEPARATOR, $ufGroupType);
414 $profileTypes = explode(',', $typeParts[0]);
415 }
416
417 if (empty($profileTypes)) {
418 return FALSE;
419 }
420 $components = ['Contribution', 'Participant', 'Membership'];
421 if (!in_array('Activity', $profileTypes)) {
422 return FALSE;
423 }
424 elseif (count($profileTypes) == 1) {
425 return FALSE;
426 }
427
428 if ($index = array_search('Contact', $profileTypes)) {
429 unset($profileTypes[$index]);
430 if (count($profileTypes) == 1) {
431 return TRUE;
432 }
433 }
434
435 $contactTypes = ['Individual', 'Household', 'Organization'];
436 $subTypes = CRM_Contact_BAO_ContactType::subTypes();
437
438 $profileTypeComponent = array_intersect($components, $profileTypes);
439 if (!empty($profileTypeComponent) ||
440 count(array_intersect($contactTypes, $profileTypes)) > 1 ||
441 count(array_intersect($subTypes, $profileTypes)) > 1
442 ) {
443 return FALSE;
444 }
445
446 return TRUE;
447 }
448
449 /**
450 * Find out whether given profile group uses $required
451 * and/or $optional profile types
452 *
453 * @param int $ufGroupId
454 * Profile id.
455 * @param array $required
456 * Array of types those are required.
457 * @param array $optional
458 * Array of types those are optional.
459 *
460 * @return bool
461 */
462 public static function checkValidProfileType($ufGroupId, $required, $optional = NULL) {
463 if (!is_array($required) || empty($required)) {
464 return FALSE;
465 }
466
467 $ufGroup = new CRM_Core_DAO_UFGroup();
468 $ufGroup->id = $ufGroupId;
469 $ufGroup->find(TRUE);
470
471 $profileTypes = [];
472 if ($ufGroup->group_type) {
473 $typeParts = explode(CRM_Core_DAO::VALUE_SEPARATOR, $ufGroup->group_type);
474 $profileTypes = explode(',', $typeParts[0]);
475 }
476
477 if (empty($profileTypes)) {
478 return FALSE;
479 }
480
481 $valid = TRUE;
482 foreach ($required as $key => $val) {
483 if (!in_array($val, $profileTypes)) {
484 $valid = FALSE;
485 break;
486 }
487 }
488
489 if ($valid && is_array($optional)) {
490 foreach ($optional as $key => $val) {
491 if (in_array($val, $profileTypes)) {
492 $valid = TRUE;
493 break;
494 }
495 }
496 }
497
498 return $valid;
499 }
500
501 /**
502 * Check for mix profile fields (eg: individual + other contact types)
503 *
504 * @param int $ufGroupId
505 *
506 * @return bool
507 * true for mix profile else false
508 */
509 public static function checkProfileType($ufGroupId) {
510 $ufGroup = new CRM_Core_DAO_UFGroup();
511 $ufGroup->id = $ufGroupId;
512 $ufGroup->find(TRUE);
513
514 $profileTypes = [];
515 if ($ufGroup->group_type) {
516 $typeParts = explode(CRM_Core_DAO::VALUE_SEPARATOR, $ufGroup->group_type);
517 $profileTypes = explode(',', $typeParts[0]);
518 }
519
520 //early return if new profile.
521 if (empty($profileTypes)) {
522 return FALSE;
523 }
524
525 //we need to unset Contact
526 if (count($profileTypes) > 1) {
527 $index = array_search('Contact', $profileTypes);
528 if ($index !== FALSE) {
529 unset($profileTypes[$index]);
530 }
531 }
532
533 // suppress any subtypes if present
534 CRM_Contact_BAO_ContactType::suppressSubTypes($profileTypes);
535
536 $contactTypes = ['Contact', 'Individual', 'Household', 'Organization'];
537 $components = ['Contribution', 'Participant', 'Membership', 'Activity'];
538 $fields = [];
539
540 // check for mix profile condition
541 if (count($profileTypes) > 1) {
542 //check the there are any components include in profile
543 foreach ($components as $value) {
544 if (in_array($value, $profileTypes)) {
545 return TRUE;
546 }
547 }
548 //check if there are more than one contact types included in profile
549 if (count($profileTypes) > 1) {
550 return TRUE;
551 }
552 }
553 elseif (count($profileTypes) == 1) {
554 // note for subtype case count would be zero
555 $profileTypes = array_values($profileTypes);
556 if (!in_array($profileTypes[0], $contactTypes)) {
557 return TRUE;
558 }
559 }
560
561 return FALSE;
562 }
563
564 /**
565 * Get the profile type (eg: individual/organization/household)
566 *
567 * @param int $ufGroupId
568 * Uf group id.
569 * @param bool $returnMixType
570 * This is true, then field type of mix profile field is returned.
571 * @param bool $onlyPure
572 * True if only pure profiles are required.
573 *
574 * @param bool $skipComponentType
575 *
576 * @return string
577 * profile group_type
578 *
579 */
580 public static function getProfileType($ufGroupId, $returnMixType = TRUE, $onlyPure = FALSE, $skipComponentType = FALSE) {
581 $ufGroup = new CRM_Core_DAO_UFGroup();
582 $ufGroup->id = $ufGroupId;
583 $ufGroup->is_active = 1;
584
585 $ufGroup->find(TRUE);
586 return self::calculateProfileType($ufGroup->group_type, $returnMixType, $onlyPure, $skipComponentType);
587 }
588
589 /**
590 * Get the profile type (eg: individual/organization/household)
591 *
592 * @param string $ufGroupType
593 * @param bool $returnMixType
594 * This is true, then field type of mix profile field is returned.
595 * @param bool $onlyPure
596 * True if only pure profiles are required.
597 * @param bool $skipComponentType
598 *
599 * @return string profile group_type
600 *
601 */
602 public static function calculateProfileType($ufGroupType, $returnMixType = TRUE, $onlyPure = FALSE, $skipComponentType = FALSE) {
603 // profile types
604 $contactTypes = ['Contact', 'Individual', 'Household', 'Organization'];
605 $subTypes = CRM_Contact_BAO_ContactType::subTypes();
606 $components = ['Contribution', 'Participant', 'Membership', 'Activity'];
607
608 $profileTypes = [];
609 if ($ufGroupType) {
610 $typeParts = explode(CRM_Core_DAO::VALUE_SEPARATOR, $ufGroupType);
611 $profileTypes = explode(',', $typeParts[0]);
612 }
613
614 if ($onlyPure) {
615 if (count($profileTypes) == 1) {
616 return $profileTypes[0];
617 }
618 else {
619 return NULL;
620 }
621 }
622
623 //we need to unset Contact
624 if (count($profileTypes) > 1) {
625 $index = array_search('Contact', $profileTypes);
626 if ($index !== FALSE) {
627 unset($profileTypes[$index]);
628 }
629 }
630
631 $profileType = $mixProfileType = NULL;
632
633 // this case handles pure profile
634 if (count($profileTypes) == 1) {
635 $profileType = array_pop($profileTypes);
636 }
637 else {
638 //check the there are any components include in profile
639 $componentCount = [];
640 foreach ($components as $value) {
641 if (in_array($value, $profileTypes)) {
642 $componentCount[] = $value;
643 }
644 }
645
646 //check contact type included in profile
647 $contactTypeCount = [];
648 foreach ($contactTypes as $value) {
649 if (in_array($value, $profileTypes)) {
650 $contactTypeCount[] = $value;
651 }
652 }
653 // subtype counter
654 $subTypeCount = [];
655 foreach ($subTypes as $value) {
656 if (in_array($value, $profileTypes)) {
657 $subTypeCount[] = $value;
658 }
659 }
660 if (!$skipComponentType && count($componentCount) == 1) {
661 $profileType = $componentCount[0];
662 }
663 elseif (count($componentCount) > 1) {
664 $mixProfileType = $componentCount[1];
665 }
666 elseif (count($subTypeCount) == 1) {
667 $profileType = $subTypeCount[0];
668 }
669 elseif (count($contactTypeCount) == 1) {
670 $profileType = $contactTypeCount[0];
671 }
672 elseif (count($subTypeCount) > 1) {
673 // this is mix subtype profiles
674 $mixProfileType = $subTypeCount[1];
675 }
676 elseif (count($contactTypeCount) > 1) {
677 // this is mix contact profiles
678 $mixProfileType = $contactTypeCount[1];
679 }
680 }
681
682 if ($mixProfileType) {
683 if ($returnMixType) {
684 return $mixProfileType;
685 }
686 else {
687 return 'Mixed';
688 }
689 }
690 else {
691 return $profileType;
692 }
693 }
694
695 /**
696 * Check for mix profiles groups (eg: individual + other contact types)
697 *
698 * @param $ctype
699 *
700 * @return bool
701 * true for mix profile group else false
702 */
703 public static function checkProfileGroupType($ctype) {
704 $ufGroup = new CRM_Core_DAO_UFGroup();
705
706 $query = "
707 SELECT ufg.id as id
708 FROM civicrm_uf_group as ufg, civicrm_uf_join as ufj
709 WHERE ufg.id = ufj.uf_group_id
710 AND ufj.module = 'User Registration'
711 AND ufg.is_active = 1 ";
712
713 $ufGroup = CRM_Core_DAO::executeQuery($query);
714
715 $fields = [];
716 $validProfiles = ['Individual', 'Organization', 'Household', 'Contribution'];
717 while ($ufGroup->fetch()) {
718 $profileType = self::getProfileType($ufGroup->id);
719 if (in_array($profileType, $validProfiles)) {
720 continue;
721 }
722 elseif ($profileType) {
723 return FALSE;
724 }
725 }
726
727 return TRUE;
728 }
729
730 /**
731 * Check for searchable or in selector field for given profile.
732 *
733 * @param int $profileID
734 *
735 * @return bool
736 */
737 public static function checkSearchableORInSelector($profileID) {
738 $result = FALSE;
739 if (!$profileID) {
740 return $result;
741 }
742
743 $query = "
744 SELECT id
745 From civicrm_uf_field
746 WHERE (in_selector = 1 OR is_searchable = 1)
747 AND uf_group_id = {$profileID}";
748
749 $ufFields = CRM_Core_DAO::executeQuery($query);
750 while ($ufFields->fetch()) {
751 $result = TRUE;
752 break;
753 }
754
755 return $result;
756 }
757
758 /**
759 * Reset In selector and is searchable values for given $profileID.
760 *
761 * @param int $profileID
762 */
763 public function resetInSelectorANDSearchable($profileID) {
764 if (!$profileID) {
765 return;
766 }
767 $query = "UPDATE civicrm_uf_field SET in_selector = 0, is_searchable = 0 WHERE uf_group_id = {$profileID}";
768 CRM_Core_DAO::executeQuery($query);
769 }
770
771 /**
772 * Add fields to $profileAddressFields as appropriate.
773 * profileAddressFields is assigned to the template to tell it
774 * what fields are in the profile address
775 * that potentially should be copied to the Billing fields
776 * we want to give precedence to
777 * 1) Billing &
778 * 2) then Primary designated as 'Primary
779 * 3) location_type is primary
780 * 4) if none of these apply then it just uses the first one
781 *
782 * as this will be used to
783 * transfer profile address data to billing fields
784 * http://issues.civicrm.org/jira/browse/CRM-5869
785 *
786 * @param string $key
787 * Field key - e.g. street_address-Primary, first_name.
788 * @param array $profileAddressFields
789 * Array of profile fields that relate to address fields.
790 * @param array $profileFilter
791 * Filter to apply to profile fields - expected usage is to only fill based on.
792 * the bottom profile per CRM-13726
793 *
794 * @return bool
795 * Can the address block be hidden safe in the knowledge all fields are elsewhere collected (see CRM-15118)
796 */
797 public static function assignAddressField($key, &$profileAddressFields, $profileFilter) {
798 $billing_id = CRM_Core_BAO_LocationType::getBilling();
799 list($prefixName, $index) = CRM_Utils_System::explode('-', $key, 2);
800
801 $profileFields = civicrm_api3('uf_field', 'get', array_merge($profileFilter,
802 [
803 'is_active' => 1,
804 'return' => 'field_name, is_required',
805 'options' => [
806 'limit' => 0,
807 ],
808 ]
809 ));
810 //check for valid fields ( fields that are present in billing block )
811 $validBillingFields = [
812 'first_name',
813 'middle_name',
814 'last_name',
815 'street_address',
816 'supplemental_address_1',
817 'city',
818 'state_province',
819 'postal_code',
820 'country',
821 ];
822 $requiredBillingFields = array_diff($validBillingFields, ['middle_name', 'supplemental_address_1']);
823 $validProfileFields = [];
824 $requiredProfileFields = [];
825
826 foreach ($profileFields['values'] as $field) {
827 if (in_array($field['field_name'], $validBillingFields)) {
828 $validProfileFields[] = $field['field_name'];
829 }
830 if (!empty($field['is_required'])) {
831 $requiredProfileFields[] = $field['field_name'];
832 }
833 }
834
835 if (!in_array($prefixName, $validProfileFields)) {
836 return FALSE;
837 }
838
839 if (!empty($index) && (
840 // it's empty so we set it OR
841 !CRM_Utils_Array::value($prefixName, $profileAddressFields)
842 //we are dealing with billing id (precedence)
843 || $index == $billing_id
844 // we are dealing with primary & billing not set
845 || ($index == 'Primary' && $profileAddressFields[$prefixName] != $billing_id)
846 || ($index == CRM_Core_BAO_LocationType::getDefault()->id
847 && $profileAddressFields[$prefixName] != $billing_id
848 && $profileAddressFields[$prefixName] != 'Primary'
849 )
850 )
851 ) {
852 $profileAddressFields[$prefixName] = $index;
853 }
854
855 $potentiallyMissingRequiredFields = array_diff($requiredBillingFields, $requiredProfileFields);
856 CRM_Core_Resources::singleton()
857 ->addSetting(['billing' => ['billingProfileIsHideable' => empty($potentiallyMissingRequiredFields)]]);
858 }
859
860 /**
861 * Get a list of fields which can be added to profiles.
862 *
863 * @param int $gid : UF group ID
864 * @param array $defaults : Form defaults
865 * @return array, multidimensional; e.g. $result['FieldGroup']['field_name']['label']
866 */
867 public static function getAvailableFields($gid = NULL, $defaults = []) {
868 $fields = [
869 'Contact' => [],
870 'Individual' => CRM_Contact_BAO_Contact::importableFields('Individual', FALSE, FALSE, TRUE, TRUE, TRUE),
871 'Household' => CRM_Contact_BAO_Contact::importableFields('Household', FALSE, FALSE, TRUE, TRUE, TRUE),
872 'Organization' => CRM_Contact_BAO_Contact::importableFields('Organization', FALSE, FALSE, TRUE, TRUE, TRUE),
873 ];
874
875 // include hook injected fields
876 $fields['Contact'] = array_merge($fields['Contact'], CRM_Contact_BAO_Query_Hook::singleton()->getFields());
877
878 // add current employer for individuals
879 $fields['Individual']['current_employer'] = [
880 'name' => 'organization_name',
881 'title' => ts('Current Employer'),
882 ];
883
884 $addressOptions = CRM_Core_BAO_Setting::valueOptions(CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME,
885 'address_options', TRUE, NULL, TRUE
886 );
887
888 if (empty($addressOptions['county'])) {
889 unset($fields['Individual']['county'], $fields['Household']['county'], $fields['Organization']['county']);
890 }
891
892 // break out common contact fields array CRM-3037.
893 // from a UI perspective this makes very little sense
894 foreach ($fields['Individual'] as $key => $value) {
895 if (!empty($fields['Household'][$key]) && !empty($fields['Organization'][$key])) {
896 $fields['Contact'][$key] = $value;
897 unset($fields['Individual'][$key], $fields['Household'][$key], $fields['Organization'][$key]);
898 }
899 }
900
901 // Internal field not exposed to forms
902 unset($fields['Contact']['contact_type']);
903 unset($fields['Contact']['master_id']);
904
905 // convert phone extension in to psedo-field phone + phone extension
906 //unset extension
907 unset($fields['Contact']['phone_ext']);
908 //add psedo field
909 $fields['Contact']['phone_and_ext'] = [
910 'name' => 'phone_and_ext',
911 'title' => ts('Phone and Extension'),
912 'hasLocationType' => 1,
913 ];
914
915 // include Subtypes For Profile
916 $subTypes = CRM_Contact_BAO_ContactType::subTypeInfo();
917 foreach ($subTypes as $name => $val) {
918 //custom fields for sub type
919 $subTypeFields = CRM_Core_BAO_CustomField::getFieldsForImport($name, FALSE, FALSE, FALSE, TRUE, TRUE);
920 if (array_key_exists($val['parent'], $fields)) {
921 $fields[$name] = $fields[$val['parent']] + $subTypeFields;
922 }
923 else {
924 $fields[$name] = $subTypeFields;
925 }
926 }
927
928 if (CRM_Core_Permission::access('CiviContribute')) {
929 $contribFields = CRM_Contribute_BAO_Contribution::getContributionFields(FALSE);
930 if (!empty($contribFields)) {
931 unset($contribFields['is_test']);
932 unset($contribFields['is_pay_later']);
933 unset($contribFields['contribution_id']);
934 $contribFields['contribution_note'] = [
935 'name' => 'contribution_note',
936 'title' => ts('Contribution Note'),
937 ];
938 $fields['Contribution'] = array_merge($contribFields, self::getContribBatchEntryFields());
939 }
940 }
941
942 if (CRM_Core_Permission::access('CiviEvent')) {
943 $participantFields = CRM_Event_BAO_Query::getParticipantFields();
944 if ($participantFields) {
945 // Remove fields not supported by profiles
946 CRM_Utils_Array::remove($participantFields,
947 'external_identifier',
948 'event_id',
949 'participant_contact_id',
950 'participant_role_id',
951 'participant_status_id',
952 'participant_is_test',
953 'participant_fee_level',
954 'participant_id',
955 'participant_is_pay_later',
956 'participant_campaign'
957 );
958 if (isset($participantFields['participant_campaign_id'])) {
959 $participantFields['participant_campaign_id']['title'] = ts('Campaign');
960 }
961 $fields['Participant'] = $participantFields;
962 }
963 }
964
965 if (CRM_Core_Permission::access('CiviMember')) {
966 $membershipFields = CRM_Member_BAO_Membership::getMembershipFields();
967 // Remove fields not supported by profiles
968 CRM_Utils_Array::remove($membershipFields,
969 'membership_id',
970 'membership_type_id',
971 'member_is_test',
972 'is_override',
973 'member_is_override',
974 'status_override_end_date',
975 'status_id',
976 'member_is_pay_later'
977 );
978 if ($gid && CRM_Core_DAO::getFieldValue('CRM_Core_DAO_UFGroup', $gid, 'name') == 'membership_batch_entry') {
979 $fields['Membership'] = array_merge($membershipFields, self::getMemberBatchEntryFields());
980 }
981 else {
982 $fields['Membership'] = $membershipFields;
983 }
984 }
985
986 if (CRM_Core_Permission::access('CiviCase')) {
987 $caseFields = CRM_Case_BAO_Query::getFields(TRUE);
988 $caseFields = array_merge($caseFields, CRM_Core_BAO_CustomField::getFieldsForImport('Case'));
989 if ($caseFields) {
990 // Remove fields not supported by profiles
991 CRM_Utils_Array::remove($caseFields,
992 'case_id',
993 'case_type',
994 'case_role',
995 'case_deleted'
996 );
997 }
998 $fields['Case'] = $caseFields;
999 }
1000
1001 $activityFields = CRM_Activity_BAO_Activity::getProfileFields();
1002 if ($activityFields) {
1003 // campaign related fields.
1004 if (isset($activityFields['activity_campaign_id'])) {
1005 $activityFields['activity_campaign_id']['title'] = ts('Campaign');
1006 }
1007 $fields['Activity'] = $activityFields;
1008 }
1009
1010 $fields['Formatting']['format_free_html_' . rand(1000, 9999)] = [
1011 'name' => 'free_html',
1012 'import' => FALSE,
1013 'export' => FALSE,
1014 'title' => 'Free HTML',
1015 ];
1016
1017 // Sort by title
1018 foreach ($fields as &$values) {
1019 $values = CRM_Utils_Array::crmArraySortByField($values, 'title');
1020 }
1021
1022 //group selected and unwanted fields list
1023 $ufFields = $gid ? CRM_Core_BAO_UFGroup::getFields($gid, FALSE, NULL, NULL, NULL, TRUE, NULL, TRUE) : [];
1024 $groupFieldList = array_merge($ufFields, [
1025 'note',
1026 'email_greeting_custom',
1027 'postal_greeting_custom',
1028 'addressee_custom',
1029 'id',
1030 ]);
1031 //unset selected fields
1032 foreach ($groupFieldList as $key => $value) {
1033 if (is_int($key)) {
1034 unset($fields['Individual'][$value], $fields['Household'][$value], $fields['Organization'][$value]);
1035 continue;
1036 }
1037 if (!empty($defaults['field_name'])
1038 && $defaults['field_name']['0'] == $value['field_type']
1039 && $defaults['field_name']['1'] == $key
1040 ) {
1041 continue;
1042 }
1043 unset($fields[$value['field_type']][$key]);
1044 }
1045
1046 return $fields;
1047 }
1048
1049 /**
1050 * Get a list of fields which can be added to profiles.
1051 *
1052 * @param bool $force
1053 *
1054 * @return array
1055 * e.g. $result['field_name']['label']
1056 */
1057 public static function getAvailableFieldsFlat($force = FALSE) {
1058 if (!isset(Civi::$statics['UFFieldsFlat']) || $force) {
1059 Civi::$statics['UFFieldsFlat'] = [];
1060 foreach (self::getAvailableFields() as $fieldType => $fields) {
1061 foreach ($fields as $fieldName => $field) {
1062 if (!isset(Civi::$statics['UFFieldsFlat'][$fieldName])) {
1063 $field['field_type'] = $fieldType;
1064 Civi::$statics['UFFieldsFlat'][$fieldName] = $field;
1065 }
1066 }
1067 }
1068 }
1069 return Civi::$statics['UFFieldsFlat'];
1070 }
1071
1072 /**
1073 * Get a list of fields which can be added to profiles in the format [name => title]
1074 *
1075 * @return array
1076 */
1077 public static function getAvailableFieldTitles() {
1078 $fields = self::getAvailableFieldsFlat();
1079 $fields['formatting'] = ['title' => ts('Formatting')];
1080 return CRM_Utils_Array::collect('title', $fields);
1081 }
1082
1083 /**
1084 * Determine whether the given field_name is valid.
1085 *
1086 * @param string $fieldName
1087 * @return bool
1088 */
1089 public static function isValidFieldName($fieldName) {
1090 $availableFields = CRM_Core_BAO_UFField::getAvailableFieldsFlat();
1091 return isset($availableFields[$fieldName]);
1092 }
1093
1094 /**
1095 * @return array|null
1096 */
1097 public static function getContribBatchEntryFields() {
1098 if (self::$_contriBatchEntryFields === NULL) {
1099 self::$_contriBatchEntryFields = [
1100 'send_receipt' => [
1101 'name' => 'send_receipt',
1102 'title' => ts('Send Receipt'),
1103 ],
1104 'soft_credit' => [
1105 'name' => 'soft_credit',
1106 'title' => ts('Soft Credit'),
1107 ],
1108 'soft_credit_type' => [
1109 'name' => 'soft_credit_type',
1110 'title' => ts('Soft Credit Type'),
1111 ],
1112 'product_name' => [
1113 'name' => 'product_name',
1114 'title' => ts('Premiums'),
1115 ],
1116 'contribution_note' => [
1117 'name' => 'contribution_note',
1118 'title' => ts('Contribution Note'),
1119 ],
1120 'contribution_soft_credit_pcp_id' => [
1121 'name' => 'contribution_soft_credit_pcp_id',
1122 'title' => ts('Personal Campaign Page'),
1123 ],
1124 ];
1125 }
1126 return self::$_contriBatchEntryFields;
1127 }
1128
1129 /**
1130 * @return array|null
1131 */
1132 public static function getMemberBatchEntryFields() {
1133 if (self::$_memberBatchEntryFields === NULL) {
1134 self::$_memberBatchEntryFields = [
1135 'send_receipt' => [
1136 'name' => 'send_receipt',
1137 'title' => ts('Send Receipt'),
1138 ],
1139 'soft_credit' => [
1140 'name' => 'soft_credit',
1141 'title' => ts('Soft Credit'),
1142 ],
1143 'product_name' => [
1144 'name' => 'product_name',
1145 'title' => ts('Premiums'),
1146 ],
1147 'financial_type' => [
1148 'name' => 'financial_type',
1149 'title' => ts('Financial Type'),
1150 ],
1151 'total_amount' => [
1152 'name' => 'total_amount',
1153 'title' => ts('Total Amount'),
1154 ],
1155 'receive_date' => [
1156 'name' => 'receive_date',
1157 'title' => ts('Date Received'),
1158 ],
1159 'payment_instrument' => [
1160 'name' => 'payment_instrument',
1161 'title' => ts('Payment Method'),
1162 ],
1163 'contribution_status_id' => [
1164 'name' => 'contribution_status_id',
1165 'title' => ts('Contribution Status'),
1166 ],
1167 'trxn_id' => [
1168 'name' => 'contribution_trxn_id',
1169 'title' => ts('Contribution Transaction ID'),
1170 ],
1171 ];
1172 }
1173 return self::$_memberBatchEntryFields;
1174 }
1175
1176 }