Merge pull request #14590 from colemanw/i18nApi
[civicrm-core.git] / CRM / Contribute / BAO / ContributionSoft.php
CommitLineData
a45a51e3 1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
a45a51e3 5 +--------------------------------------------------------------------+
6b83d5bd 6 | Copyright CiviCRM LLC (c) 2004-2019 |
a45a51e3 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
6b83d5bd 31 * @copyright CiviCRM LLC (c) 2004-2019
a45a51e3 32 */
33class CRM_Contribute_BAO_ContributionSoft extends CRM_Contribute_DAO_ContributionSoft {
34
8cb2c285 35 /**
fe482240 36 * Construct method.
8cb2c285 37 */
00be9182 38 public function __construct() {
a45a51e3 39 parent::__construct();
40 }
41
42 /**
fe482240 43 * Add contribution soft credit record.
a45a51e3 44 *
014c4014
TO
45 * @param array $params
46 * (reference ) an assoc array of name/value pairs.
a45a51e3 47 *
a6c01b45
CW
48 * @return object
49 * soft contribution of object that is added
a45a51e3 50 */
07a88eec 51 public static function add(&$params) {
a45a51e3 52 $contributionSoft = new CRM_Contribute_DAO_ContributionSoft();
53 $contributionSoft->copyValues($params);
6dcc4d9d 54
55 // set currency for CRM-1496
56 if (!isset($contributionSoft->currency)) {
57 $config = CRM_Core_Config::singleton();
58 $contributionSoft->currency = $config->defaultCurrency;
59 }
a45a51e3 60 return $contributionSoft->save();
61 }
62
7a13735b 63 /**
64 * Process the soft contribution and/or link to personal campaign page.
65 *
66 * @param array $params
67 * @param object $contribution CRM_Contribute_DAO_Contribution
68 *
69 */
70 public static function processSoftContribution($params, $contribution) {
71 //retrieve existing soft-credit and pcp id(s) if any against $contribution
72 $softIDs = self::getSoftCreditIds($contribution->id);
73 $pcpId = self::getSoftCreditIds($contribution->id, TRUE);
74
75 if ($pcp = CRM_Utils_Array::value('pcp', $params)) {
76 $softParams = array();
77 $softParams['id'] = $pcpId ? $pcpId : NULL;
78 $softParams['contribution_id'] = $contribution->id;
79 $softParams['pcp_id'] = $pcp['pcp_made_through_id'];
80 $softParams['contact_id'] = CRM_Core_DAO::getFieldValue('CRM_PCP_DAO_PCP',
81 $pcp['pcp_made_through_id'], 'contact_id'
82 );
83 $softParams['currency'] = $contribution->currency;
84 $softParams['amount'] = $contribution->total_amount;
85 $softParams['pcp_display_in_roll'] = CRM_Utils_Array::value('pcp_display_in_roll', $pcp);
86 $softParams['pcp_roll_nickname'] = CRM_Utils_Array::value('pcp_roll_nickname', $pcp);
87 $softParams['pcp_personal_note'] = CRM_Utils_Array::value('pcp_personal_note', $pcp);
0571e734 88 $softParams['soft_credit_type_id'] = CRM_Core_PseudoConstant::getKey('CRM_Contribute_BAO_ContributionSoft', 'soft_credit_type_id', 'pcp');
7a13735b 89 $contributionSoft = self::add($softParams);
90 //Send notification to owner for PCP
91 if ($contributionSoft->pcp_id && empty($pcpId)) {
92 CRM_Contribute_Form_Contribution_Confirm::pcpNotifyOwner($contribution, $contributionSoft);
93 }
94 }
95 //Delete PCP against this contribution and create new on submitted PCP information
96 elseif (array_key_exists('pcp', $params) && $pcpId) {
fae69387 97 civicrm_api3('ContributionSoft', 'delete', array('id' => $pcpId));
7a13735b 98 }
99 if (isset($params['soft_credit'])) {
100 $softParams = $params['soft_credit'];
101 foreach ($softParams as $softParam) {
102 if (!empty($softIDs)) {
103 $key = key($softIDs);
104 $softParam['id'] = $softIDs[$key];
105 unset($softIDs[$key]);
106 }
107 $softParam['contribution_id'] = $contribution->id;
108 $softParam['currency'] = $contribution->currency;
109 //case during Contribution Import when we assign soft contribution amount as contribution's total_amount by default
110 if (empty($softParam['amount'])) {
111 $softParam['amount'] = $contribution->total_amount;
112 }
113 CRM_Contribute_BAO_ContributionSoft::add($softParam);
114 }
115
116 // delete any extra soft-credit while updating back-office contribution
117 foreach ((array) $softIDs as $softID) {
118 if (!in_array($softID, $params['soft_credit_ids'])) {
fae69387 119 civicrm_api3('ContributionSoft', 'delete', array('id' => $softID));
7a13735b 120 }
121 }
122 }
123 }
124
125 /**
126 * Function used to save pcp / soft credit entry.
127 *
128 * This is used by contribution and also event pcps
129 *
130 * @param array $params
131 * @param object $form
132 * Form object.
133 */
134 public static function formatSoftCreditParams(&$params, &$form) {
135 $pcp = $softParams = $softIDs = array();
136 if (!empty($params['pcp_made_through_id'])) {
137 $fields = array(
138 'pcp_made_through_id',
139 'pcp_display_in_roll',
140 'pcp_roll_nickname',
141 'pcp_personal_note',
142 );
143 foreach ($fields as $f) {
144 $pcp[$f] = CRM_Utils_Array::value($f, $params);
145 }
146 }
147
4779abb3 148 if (!empty($form->_values['honoree_profile_id']) && !empty($params['soft_credit_type_id'])) {
7a13735b 149 $honorId = NULL;
150
7f90383e 151 // @todo fix use of deprecated function.
0571e734 152 $contributionSoftParams['soft_credit_type_id'] = CRM_Core_PseudoConstant::getKey('CRM_Contribute_BAO_ContributionSoft', 'soft_credit_type_id', 'pcp');
7a13735b 153 //check if there is any duplicate contact
d977e221
AH
154 // honoree should never be the donor
155 $exceptKeys = array(
156 'contactID' => 0,
157 'onbehalf_contact_id' => 0,
158 );
159 $except = array_values(array_intersect_key($params, $exceptKeys));
7f90383e 160 $ids = CRM_Contact_BAO_Contact::getDuplicateContacts(
161 $params['honor'],
162 CRM_Core_BAO_UFGroup::getContactType($form->_values['honoree_profile_id']),
163 'Unsupervised',
164 $except,
165 FALSE
166 );
7a13735b 167 if (count($ids)) {
168 $honorId = CRM_Utils_Array::value(0, $ids);
169 }
170
db62d3a5 171 $null = [];
7a13735b 172 $honorId = CRM_Contact_BAO_Contact::createProfileContact(
db62d3a5 173 $params['honor'], $null,
7a13735b 174 $honorId, NULL,
4779abb3 175 $form->_values['honoree_profile_id']
7a13735b 176 );
177 $softParams[] = array(
178 'contact_id' => $honorId,
179 'soft_credit_type_id' => $params['soft_credit_type_id'],
180 );
181
182 if (CRM_Utils_Array::value('is_email_receipt', $form->_values)) {
183 $form->_values['honor'] = array(
184 'soft_credit_type' => CRM_Utils_Array::value(
185 $params['soft_credit_type_id'],
186 CRM_Core_OptionGroup::values("soft_credit_type")
187 ),
188 'honor_id' => $honorId,
4779abb3 189 'honor_profile_id' => $form->_values['honoree_profile_id'],
7a13735b 190 'honor_profile_values' => $params['honor'],
191 );
192 }
193 }
194 elseif (!empty($params['soft_credit_contact_id'])) {
195 //build soft credit params
196 foreach ($params['soft_credit_contact_id'] as $key => $val) {
197 if ($val && $params['soft_credit_amount'][$key]) {
198 $softParams[$key]['contact_id'] = $val;
199 $softParams[$key]['amount'] = CRM_Utils_Rule::cleanMoney($params['soft_credit_amount'][$key]);
200 $softParams[$key]['soft_credit_type_id'] = $params['soft_credit_type'][$key];
201 if (!empty($params['soft_credit_id'][$key])) {
202 $softIDs[] = $softParams[$key]['id'] = $params['soft_credit_id'][$key];
203 }
204 }
205 }
206 }
207
208 $params['pcp'] = !empty($pcp) ? $pcp : NULL;
209 $params['soft_credit'] = $softParams;
210 $params['soft_credit_ids'] = $softIDs;
211 }
212
a45a51e3 213 /**
fe482240 214 * Fetch object based on array of properties.
a45a51e3 215 *
014c4014
TO
216 * @param array $params
217 * (reference ) an assoc array of name/value pairs.
218 * @param array $defaults
219 * (reference ) an assoc array to hold the flattened values.
a45a51e3 220 *
16b10e64 221 * @return CRM_Contribute_BAO_ContributionSoft
a45a51e3 222 */
00be9182 223 public static function retrieve(&$params, &$defaults) {
a45a51e3 224 $contributionSoft = new CRM_Contribute_DAO_ContributionSoft();
225 $contributionSoft->copyValues($params);
226 if ($contributionSoft->find(TRUE)) {
227 CRM_Core_DAO::storeValues($contributionSoft, $defaults);
228 return $contributionSoft;
229 }
230 return NULL;
231 }
232
186c9c17 233 /**
100fef9d 234 * @param int $contact_id
186c9c17
EM
235 * @param int $isTest
236 *
237 * @return array
238 */
00be9182 239 public static function getSoftContributionTotals($contact_id, $isTest = 0) {
879fda37 240
971cdafb 241 $whereClause = "AND cc.cancel_date IS NULL";
879fda37 242
971cdafb 243 $query = "
8cb2c285
KJ
244 SELECT SUM(amount) as amount, AVG(total_amount) as average, cc.currency
245 FROM civicrm_contribution_soft ccs
246 LEFT JOIN civicrm_contribution cc ON ccs.contribution_id = cc.id
971cdafb 247 WHERE cc.is_test = %2 AND ccs.contact_id = %1 {$whereClause}
248 GROUP BY currency";
6dcc4d9d 249
874c9be7 250 $params = array(
353ffa53 251 1 => array($contact_id, 'Integer'),
389bcebf 252 2 => array($isTest, 'Integer'),
353ffa53 253 );
6dcc4d9d 254
255 $cs = CRM_Core_DAO::executeQuery($query, $params);
256
d9c8c3c8 257 $count = $countCancelled = 0;
971cdafb 258 $amount = $average = $cancelAmount = array();
6dcc4d9d 259
260 while ($cs->fetch()) {
261 if ($cs->amount > 0) {
262 $count++;
d9c8c3c8
PF
263 $amount[] = CRM_Utils_Money::format($cs->amount, $cs->currency);
264 $average[] = CRM_Utils_Money::format($cs->average, $cs->currency);
6dcc4d9d 265 }
266 }
879fda37 267
971cdafb 268 //to get cancel amount
269 $cancelAmountWhereClause = "AND cc.cancel_date IS NOT NULL";
270 $query = str_replace($whereClause, $cancelAmountWhereClause, $query);
271 $cancelAmountSQL = CRM_Core_DAO::executeQuery($query, $params);
272 while ($cancelAmountSQL->fetch()) {
273 if ($cancelAmountSQL->amount > 0) {
d9c8c3c8
PF
274 $countCancelled++;
275 $cancelAmount[] = CRM_Utils_Money::format($cancelAmountSQL->amount, $cancelAmountSQL->currency);
971cdafb 276 }
277 }
879fda37 278
d9c8c3c8 279 if ($count > 0 || $countCancelled > 0) {
91bb24a7 280 return array(
d9c8c3c8
PF
281 $count,
282 $countCancelled,
91bb24a7 283 implode(',&nbsp;', $amount),
6dcc4d9d 284 implode(',&nbsp;', $average),
971cdafb 285 implode(',&nbsp;', $cancelAmount),
6dcc4d9d 286 );
287 }
288 return array(0, 0);
289 }
290
291 /**
100fef9d 292 * Retrieve soft contributions for contribution record.
6dcc4d9d 293 *
100fef9d 294 * @param int $contributionID
014c4014
TO
295 * @param bool $all
296 * Include PCP data.
dd244018 297 *
a6c01b45 298 * @return array
16b10e64 299 * Array of soft contribution ids, amounts, and associated contact ids
6dcc4d9d 300 */
00be9182 301 public static function getSoftContribution($contributionID, $all = FALSE) {
17db9f82
KJ
302 $pcpFields = array(
303 'pcp_id',
b6545333 304 'pcp_title',
17db9f82
KJ
305 'pcp_display_in_roll',
306 'pcp_roll_nickname',
307 'pcp_personal_note',
308 );
309
7ccf8829 310 $query = '
b6545333 311 SELECT ccs.id, pcp_id, cpcp.title as pcp_title, pcp_display_in_roll, pcp_roll_nickname, pcp_personal_note, ccs.currency as currency, amount, ccs.contact_id as contact_id, c.display_name, ccs.soft_credit_type_id
7ccf8829 312 FROM civicrm_contribution_soft ccs INNER JOIN civicrm_contact c on c.id = ccs.contact_id
b6545333 313 LEFT JOIN civicrm_pcp cpcp ON ccs.pcp_id = cpcp.id
7ccf8829
KJ
314 WHERE contribution_id = %1;
315 ';
316
317 $params = array(1 => array($contributionID, 'Integer'));
318
319 $dao = CRM_Core_DAO::executeQuery($query, $params);
320
321 $softContribution = array();
322 $count = 1;
323 while ($dao->fetch()) {
b6545333 324 if ($dao->pcp_id) {
6dcc4d9d 325 if ($all) {
17db9f82 326 foreach ($pcpFields as $val) {
b6545333 327 $softContribution[$val] = $dao->$val;
6dcc4d9d 328 }
b6545333 329 $softContribution['pcp_soft_credit_to_name'] = $dao->display_name;
330 $softContribution['pcp_soft_credit_to_id'] = $dao->contact_id;
6dcc4d9d 331 }
b6545333 332 }
333 else {
35729234 334 $softContribution['soft_credit'][$count] = array(
b6545333 335 'contact_id' => $dao->contact_id,
336 'soft_credit_id' => $dao->id,
337 'currency' => $dao->currency,
338 'amount' => $dao->amount,
339 'contact_name' => $dao->display_name,
340 'soft_credit_type' => $dao->soft_credit_type_id,
b7617307 341 'soft_credit_type_label' => CRM_Core_PseudoConstant::getLabel('CRM_Contribute_BAO_ContributionSoft', 'soft_credit_type_id', $dao->soft_credit_type_id),
35729234
KJ
342 );
343 $count++;
6dcc4d9d 344 }
345 }
7ccf8829 346
6dcc4d9d 347 return $softContribution;
348 }
349
186c9c17 350 /**
100fef9d 351 * @param int $contributionID
186c9c17
EM
352 * @param bool $isPCP
353 *
354 * @return array
355 */
874c9be7 356 public static function getSoftCreditIds($contributionID, $isPCP = FALSE) {
91bb24a7 357 $query = "
b6545333 358 SELECT id
2cfc0f58 359 FROM civicrm_contribution_soft
360 WHERE contribution_id = %1
361 ";
b6545333 362
363 if ($isPCP) {
364 $query .= " AND pcp_id IS NOT NULL";
365 }
1221efe9 366 else {
367 $query .= " AND pcp_id IS NULL";
368 }
2cfc0f58 369 $params = array(1 => array($contributionID, 'Integer'));
370
371 $dao = CRM_Core_DAO::executeQuery($query, $params);
372 $id = array();
7f880799 373 $type = '';
2cfc0f58 374 while ($dao->fetch()) {
b6545333 375 if ($isPCP) {
376 return $dao->id;
2cfc0f58 377 }
378 $id[] = $dao->id;
379 }
b6545333 380 return $id;
2cfc0f58 381 }
91bb24a7 382
dfe9afbf 383 /**
384 * Wrapper for ajax soft contribution selector.
385 *
386 * @param array $params
387 * Associated array for params.
388 *
389 * @return array
390 * Associated array of soft contributions
391 */
392 public static function getSoftContributionSelector($params) {
393 $isTest = 0;
394 if (!empty($params['isTest'])) {
395 $isTest = $params['isTest'];
396 }
397 // Format the params.
398 $params['offset'] = ($params['page'] - 1) * $params['rp'];
399 $params['rowCount'] = $params['rp'];
400 $params['sort'] = CRM_Utils_Array::value('sortBy', $params);
401 $contactId = $params['cid'];
402
403 $filter = NULL;
404 if ($params['context'] == 'membership' && !empty($params['entityID']) && $contactId) {
405 $filter = " AND cc.id IN (SELECT contribution_id FROM civicrm_membership_payment WHERE membership_id = {$params['entityID']})";
406 }
407
408 $softCreditList = self::getSoftContributionList($contactId, $filter, $isTest, $params);
409
410 $softCreditListDT = array();
411 $softCreditListDT['data'] = array_values($softCreditList);
412 $softCreditListDT['recordsTotal'] = $params['total'];
413 $softCreditListDT['recordsFiltered'] = $params['total'];
414
415 return $softCreditListDT;
416 }
417
6dcc4d9d 418 /**
91bb24a7 419 * Function to retrieve the list of soft contributions for given contact.
6dcc4d9d 420 *
014c4014
TO
421 * @param int $contact_id
422 * Contact id.
014c4014 423 * @param string $filter
389bcebf 424 * @param int $isTest
014c4014 425 * Additional filter criteria, later used in where clause.
dfe9afbf 426 * @param array $dTParams
dd244018
EM
427 *
428 * @return array
6dcc4d9d 429 */
dfe9afbf 430 public static function getSoftContributionList($contact_id, $filter = NULL, $isTest = 0, &$dTParams = NULL) {
431 $config = CRM_Core_Config::singleton();
432 $links = array(
433 CRM_Core_Action::VIEW => array(
434 'name' => ts('View'),
435 'url' => 'civicrm/contact/view/contribution',
436 'qs' => 'reset=1&id=%%contributionid%%&cid=%%contactId%%&action=view&context=contribution&selectedChild=contribute',
437 'title' => ts('View related contribution'),
438 ),
439 );
440 $orderBy = 'cc.receive_date DESC';
441 if (!empty($dTParams['sort'])) {
442 $orderBy = $dTParams['sort'];
443 }
444 $limit = '';
445 if (!empty($dTParams['rowCount']) && $dTParams['rowCount'] > 0) {
446 $limit = " LIMIT {$dTParams['offset']}, {$dTParams['rowCount']} ";
447 }
448 $softOgId = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_OptionGroup', 'soft_credit_type', 'id', 'name');
449 $statusOgId = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_OptionGroup', 'contribution_status', 'id', 'name');
450
8cb2c285 451 $query = '
dfe9afbf 452 SELECT SQL_CALC_FOUND_ROWS ccs.id, ccs.amount as amount,
8cb2c285
KJ
453 ccs.contribution_id,
454 ccs.pcp_id,
455 ccs.pcp_display_in_roll,
456 ccs.pcp_roll_nickname,
457 ccs.pcp_personal_note,
51fa20cb 458 ccs.soft_credit_type_id,
dfe9afbf 459 sov.label as sct_label,
8cb2c285
KJ
460 cc.receive_date,
461 cc.contact_id as contributor_id,
462 cc.contribution_status_id as contribution_status_id,
dfe9afbf 463 cov.label as contribution_status,
8cb2c285
KJ
464 cp.title as pcp_title,
465 cc.currency,
dfe9afbf 466 contact.display_name as contributor_name,
467 cct.name as financial_type
8cb2c285
KJ
468 FROM civicrm_contribution_soft ccs
469 LEFT JOIN civicrm_contribution cc
470 ON ccs.contribution_id = cc.id
471 LEFT JOIN civicrm_pcp cp
472 ON ccs.pcp_id = cp.id
473 LEFT JOIN civicrm_contact contact ON
474 ccs.contribution_id = cc.id AND cc.contact_id = contact.id
475 LEFT JOIN civicrm_financial_type cct ON cc.financial_type_id = cct.id
dfe9afbf 476 LEFT JOIN civicrm_option_value sov ON sov.option_group_id = %3 AND ccs.soft_credit_type_id = sov.value
477 LEFT JOIN civicrm_option_value cov ON cov.option_group_id = %4 AND cc.contribution_status_id = cov.value
91ef9be0 478 ';
479
480 $where = "
481 WHERE cc.is_test = %2 AND ccs.contact_id = %1";
482 if ($filter) {
483 $where .= $filter;
484 }
485
dfe9afbf 486 $query .= "{$where} ORDER BY {$orderBy} {$limit}";
8cb2c285
KJ
487
488 $params = array(
489 1 => array($contact_id, 'Integer'),
21dfd5f5 490 2 => array($isTest, 'Integer'),
dfe9afbf 491 3 => array($softOgId, 'Integer'),
492 4 => array($statusOgId, 'Integer'),
8cb2c285
KJ
493 );
494 $cs = CRM_Core_DAO::executeQuery($query, $params);
dfe9afbf 495
496 $dTParams['total'] = CRM_Core_DAO::singleValueQuery('SELECT FOUND_ROWS()');
8cb2c285 497 $result = array();
6dcc4d9d 498 while ($cs->fetch()) {
ff8242a8 499 $result[$cs->id]['amount'] = CRM_Utils_Money::format($cs->amount, $cs->currency);
6dcc4d9d 500 $result[$cs->id]['currency'] = $cs->currency;
501 $result[$cs->id]['contributor_id'] = $cs->contributor_id;
502 $result[$cs->id]['contribution_id'] = $cs->contribution_id;
dfe9afbf 503 $result[$cs->id]['contributor_name'] = CRM_Utils_System::href(
504 $cs->contributor_name,
505 'civicrm/contact/view',
506 "reset=1&cid={$cs->contributor_id}"
507 );
508 $result[$cs->id]['financial_type'] = $cs->financial_type;
509 $result[$cs->id]['receive_date'] = CRM_Utils_Date::customFormat($cs->receive_date, $config->dateformatDatetime);
6dcc4d9d 510 $result[$cs->id]['pcp_id'] = $cs->pcp_id;
dfe9afbf 511 $result[$cs->id]['pcp_title'] = ($cs->pcp_title) ? $cs->pcp_title : 'n/a';
6dcc4d9d 512 $result[$cs->id]['pcp_display_in_roll'] = $cs->pcp_display_in_roll;
513 $result[$cs->id]['pcp_roll_nickname'] = $cs->pcp_roll_nickname;
514 $result[$cs->id]['pcp_personal_note'] = $cs->pcp_personal_note;
dfe9afbf 515 $result[$cs->id]['contribution_status'] = $cs->contribution_status;
516 $result[$cs->id]['sct_label'] = $cs->sct_label;
517 $replace = array(
518 'contributionid' => $cs->contribution_id,
519 'contactId' => $cs->contributor_id,
520 );
521 $result[$cs->id]['links'] = CRM_Core_Action::formLink($links, NULL, $replace);
6dcc4d9d 522
523 if ($isTest) {
cd355351 524 $result[$cs->id]['contribution_status'] = CRM_Core_TestEntity::appendTestText($result[$cs->id]['contribution_status']);
6dcc4d9d 525 }
526 }
527 return $result;
528 }
1421174e 529
186c9c17 530 /**
d424ffde
CW
531 * Function to assign honor profile fields to template/form, if $honorId (as soft-credit's contact_id)
532 * is passed then whole honoreeprofile fields with title/value assoc array assigned or only honoreeName
533 * is assigned
534 *
c490a46a
CW
535 * @param CRM_Core_Form $form
536 * @param array $params
100fef9d 537 * @param int $honorId
186c9c17 538 */
4779abb3 539 public static function formatHonoreeProfileFields($form, $params, $honorId = NULL) {
540 if (empty($form->_values['honoree_profile_id'])) {
541 return;
542 }
543 $profileContactType = CRM_Core_BAO_UFGroup::getContactType($form->_values['honoree_profile_id']);
544 $profileFields = CRM_Core_BAO_UFGroup::getFields($form->_values['honoree_profile_id']);
1421174e 545 $honoreeProfileFields = $values = array();
8af73472 546 $honorName = NULL;
1421174e 547
548 if ($honorId) {
549 CRM_Core_BAO_UFGroup::getValues($honorId, $profileFields, $values, FALSE, $params);
8af73472 550 if (empty($params)) {
551 foreach ($profileFields as $name => $field) {
552 $title = $field['title'];
553 $params[$field['name']] = $values[$title];
554 }
555 }
1421174e 556 }
557
558 //remove name related fields and construct name string with prefix/suffix
559 //which will be later assigned to template
560 switch ($profileContactType) {
561 case 'Individual':
562 if (array_key_exists('prefix_id', $params)) {
563 $honorName = CRM_Utils_Array::value(CRM_Utils_Array::value('prefix_id', $params),
564 CRM_Core_PseudoConstant::get('CRM_Contact_DAO_Contact', 'prefix_id')
565 );
566 unset($profileFields['prefix_id']);
567 }
874c9be7
TO
568 $honorName .= ' ' . $params['first_name'] . ' ' . $params['last_name'];
569 unset($profileFields['first_name']);
570 unset($profileFields['last_name']);
571 if (array_key_exists('suffix_id', $params)) {
572 $honorName .= ' ' . CRM_Utils_Array::value(CRM_Utils_Array::value('suffix_id', $params),
1421174e 573 CRM_Core_PseudoConstant::get('CRM_Contact_DAO_Contact', 'suffix_id')
574 );
874c9be7
TO
575 unset($profileFields['suffix_id']);
576 }
577 break;
578
579 case 'Organization':
580 $honorName = $params['organization_name'];
581 unset($profileFields['organization_name']);
582 break;
583
584 case 'Household':
585 $honorName = $params['household_name'];
586 unset($profileFields['household_name']);
587 break;
1421174e 588 }
589
590 if ($honorId) {
591 $honoreeProfileFields['Name'] = $honorName;
592 foreach ($profileFields as $name => $field) {
593 $title = $field['title'];
594 $honoreeProfileFields[$title] = $values[$title];
595 }
596 $form->assign('honoreeProfile', $honoreeProfileFields);
597 }
598 else {
599 $form->assign('honorName', $honorName);
600 }
601 }
96025800 602
a45a51e3 603}