dev/core#1281 fix e-notice on isLiveMode
[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) {
5062a7b3
MWMC
302 $softContributionFields = self::getSoftCreditContributionFields([$contributionID], $all);
303 return isset($softContributionFields[$contributionID]) ? $softContributionFields[$contributionID] : [];
304 }
305
306 /**
307 * Retrieve soft contributions for an array of contribution records.
308 *
309 * @param array $contributionIDs
310 * @param bool $all
311 * Include PCP data.
312 *
313 * @return array
314 * Array of soft contribution ids, amounts, and associated contact ids
315 */
316 public static function getSoftCreditContributionFields($contributionIDs, $all = FALSE) {
317 $pcpFields = [
17db9f82 318 'pcp_id',
b6545333 319 'pcp_title',
17db9f82
KJ
320 'pcp_display_in_roll',
321 'pcp_roll_nickname',
322 'pcp_personal_note',
5062a7b3 323 ];
17db9f82 324
5062a7b3
MWMC
325 $query = "
326 SELECT ccs.id, pcp_id, ccs.contribution_id as contribution_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 327 FROM civicrm_contribution_soft ccs INNER JOIN civicrm_contact c on c.id = ccs.contact_id
b6545333 328 LEFT JOIN civicrm_pcp cpcp ON ccs.pcp_id = cpcp.id
5062a7b3
MWMC
329 WHERE contribution_id IN (%1)
330 ";
331 $queryParams = [1 => [implode(',', $contributionIDs), 'CommaSeparatedIntegers']];
332 $dao = CRM_Core_DAO::executeQuery($query, $queryParams);
7ccf8829 333
5062a7b3 334 $softContribution = $indexes = [];
7ccf8829 335 while ($dao->fetch()) {
b6545333 336 if ($dao->pcp_id) {
6dcc4d9d 337 if ($all) {
17db9f82 338 foreach ($pcpFields as $val) {
5062a7b3 339 $softContribution[$dao->contribution_id][$val] = $dao->$val;
6dcc4d9d 340 }
5062a7b3
MWMC
341 $softContribution[$dao->contribution_id]['pcp_soft_credit_to_name'] = $dao->display_name;
342 $softContribution[$dao->contribution_id]['pcp_soft_credit_to_id'] = $dao->contact_id;
6dcc4d9d 343 }
b6545333 344 }
345 else {
5062a7b3
MWMC
346 // Use a 1-based array because that's what this function returned before refactoring in https://github.com/civicrm/civicrm-core/pull/14747
347 $indexes[$dao->contribution_id] = isset($indexes[$dao->contribution_id]) ? $indexes[$dao->contribution_id] + 1 : 1;
348 $softContribution[$dao->contribution_id]['soft_credit'][$indexes[$dao->contribution_id]] = [
b6545333 349 'contact_id' => $dao->contact_id,
350 'soft_credit_id' => $dao->id,
351 'currency' => $dao->currency,
352 'amount' => $dao->amount,
353 'contact_name' => $dao->display_name,
354 'soft_credit_type' => $dao->soft_credit_type_id,
b7617307 355 'soft_credit_type_label' => CRM_Core_PseudoConstant::getLabel('CRM_Contribute_BAO_ContributionSoft', 'soft_credit_type_id', $dao->soft_credit_type_id),
5062a7b3 356 ];
6dcc4d9d 357 }
358 }
7ccf8829 359
6dcc4d9d 360 return $softContribution;
361 }
362
186c9c17 363 /**
100fef9d 364 * @param int $contributionID
186c9c17
EM
365 * @param bool $isPCP
366 *
367 * @return array
368 */
874c9be7 369 public static function getSoftCreditIds($contributionID, $isPCP = FALSE) {
91bb24a7 370 $query = "
b6545333 371 SELECT id
2cfc0f58 372 FROM civicrm_contribution_soft
373 WHERE contribution_id = %1
374 ";
b6545333 375
376 if ($isPCP) {
377 $query .= " AND pcp_id IS NOT NULL";
378 }
1221efe9 379 else {
380 $query .= " AND pcp_id IS NULL";
381 }
2cfc0f58 382 $params = array(1 => array($contributionID, 'Integer'));
383
384 $dao = CRM_Core_DAO::executeQuery($query, $params);
385 $id = array();
7f880799 386 $type = '';
2cfc0f58 387 while ($dao->fetch()) {
b6545333 388 if ($isPCP) {
389 return $dao->id;
2cfc0f58 390 }
391 $id[] = $dao->id;
392 }
b6545333 393 return $id;
2cfc0f58 394 }
91bb24a7 395
dfe9afbf 396 /**
397 * Wrapper for ajax soft contribution selector.
398 *
399 * @param array $params
400 * Associated array for params.
401 *
402 * @return array
403 * Associated array of soft contributions
404 */
405 public static function getSoftContributionSelector($params) {
406 $isTest = 0;
407 if (!empty($params['isTest'])) {
408 $isTest = $params['isTest'];
409 }
410 // Format the params.
411 $params['offset'] = ($params['page'] - 1) * $params['rp'];
412 $params['rowCount'] = $params['rp'];
413 $params['sort'] = CRM_Utils_Array::value('sortBy', $params);
414 $contactId = $params['cid'];
415
416 $filter = NULL;
417 if ($params['context'] == 'membership' && !empty($params['entityID']) && $contactId) {
418 $filter = " AND cc.id IN (SELECT contribution_id FROM civicrm_membership_payment WHERE membership_id = {$params['entityID']})";
419 }
420
421 $softCreditList = self::getSoftContributionList($contactId, $filter, $isTest, $params);
422
423 $softCreditListDT = array();
424 $softCreditListDT['data'] = array_values($softCreditList);
425 $softCreditListDT['recordsTotal'] = $params['total'];
426 $softCreditListDT['recordsFiltered'] = $params['total'];
427
428 return $softCreditListDT;
429 }
430
6dcc4d9d 431 /**
91bb24a7 432 * Function to retrieve the list of soft contributions for given contact.
6dcc4d9d 433 *
014c4014
TO
434 * @param int $contact_id
435 * Contact id.
014c4014 436 * @param string $filter
389bcebf 437 * @param int $isTest
014c4014 438 * Additional filter criteria, later used in where clause.
dfe9afbf 439 * @param array $dTParams
dd244018
EM
440 *
441 * @return array
6dcc4d9d 442 */
dfe9afbf 443 public static function getSoftContributionList($contact_id, $filter = NULL, $isTest = 0, &$dTParams = NULL) {
444 $config = CRM_Core_Config::singleton();
445 $links = array(
446 CRM_Core_Action::VIEW => array(
447 'name' => ts('View'),
448 'url' => 'civicrm/contact/view/contribution',
449 'qs' => 'reset=1&id=%%contributionid%%&cid=%%contactId%%&action=view&context=contribution&selectedChild=contribute',
450 'title' => ts('View related contribution'),
451 ),
452 );
453 $orderBy = 'cc.receive_date DESC';
454 if (!empty($dTParams['sort'])) {
455 $orderBy = $dTParams['sort'];
456 }
457 $limit = '';
458 if (!empty($dTParams['rowCount']) && $dTParams['rowCount'] > 0) {
459 $limit = " LIMIT {$dTParams['offset']}, {$dTParams['rowCount']} ";
460 }
461 $softOgId = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_OptionGroup', 'soft_credit_type', 'id', 'name');
462 $statusOgId = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_OptionGroup', 'contribution_status', 'id', 'name');
463
8cb2c285 464 $query = '
dfe9afbf 465 SELECT SQL_CALC_FOUND_ROWS ccs.id, ccs.amount as amount,
8cb2c285
KJ
466 ccs.contribution_id,
467 ccs.pcp_id,
468 ccs.pcp_display_in_roll,
469 ccs.pcp_roll_nickname,
470 ccs.pcp_personal_note,
51fa20cb 471 ccs.soft_credit_type_id,
dfe9afbf 472 sov.label as sct_label,
8cb2c285
KJ
473 cc.receive_date,
474 cc.contact_id as contributor_id,
475 cc.contribution_status_id as contribution_status_id,
dfe9afbf 476 cov.label as contribution_status,
8cb2c285
KJ
477 cp.title as pcp_title,
478 cc.currency,
dfe9afbf 479 contact.display_name as contributor_name,
480 cct.name as financial_type
8cb2c285
KJ
481 FROM civicrm_contribution_soft ccs
482 LEFT JOIN civicrm_contribution cc
483 ON ccs.contribution_id = cc.id
484 LEFT JOIN civicrm_pcp cp
485 ON ccs.pcp_id = cp.id
486 LEFT JOIN civicrm_contact contact ON
487 ccs.contribution_id = cc.id AND cc.contact_id = contact.id
488 LEFT JOIN civicrm_financial_type cct ON cc.financial_type_id = cct.id
dfe9afbf 489 LEFT JOIN civicrm_option_value sov ON sov.option_group_id = %3 AND ccs.soft_credit_type_id = sov.value
490 LEFT JOIN civicrm_option_value cov ON cov.option_group_id = %4 AND cc.contribution_status_id = cov.value
91ef9be0 491 ';
492
493 $where = "
494 WHERE cc.is_test = %2 AND ccs.contact_id = %1";
495 if ($filter) {
496 $where .= $filter;
497 }
498
dfe9afbf 499 $query .= "{$where} ORDER BY {$orderBy} {$limit}";
8cb2c285
KJ
500
501 $params = array(
502 1 => array($contact_id, 'Integer'),
21dfd5f5 503 2 => array($isTest, 'Integer'),
dfe9afbf 504 3 => array($softOgId, 'Integer'),
505 4 => array($statusOgId, 'Integer'),
8cb2c285
KJ
506 );
507 $cs = CRM_Core_DAO::executeQuery($query, $params);
dfe9afbf 508
509 $dTParams['total'] = CRM_Core_DAO::singleValueQuery('SELECT FOUND_ROWS()');
8cb2c285 510 $result = array();
6dcc4d9d 511 while ($cs->fetch()) {
ff8242a8 512 $result[$cs->id]['amount'] = CRM_Utils_Money::format($cs->amount, $cs->currency);
6dcc4d9d 513 $result[$cs->id]['currency'] = $cs->currency;
514 $result[$cs->id]['contributor_id'] = $cs->contributor_id;
515 $result[$cs->id]['contribution_id'] = $cs->contribution_id;
dfe9afbf 516 $result[$cs->id]['contributor_name'] = CRM_Utils_System::href(
517 $cs->contributor_name,
518 'civicrm/contact/view',
519 "reset=1&cid={$cs->contributor_id}"
520 );
521 $result[$cs->id]['financial_type'] = $cs->financial_type;
522 $result[$cs->id]['receive_date'] = CRM_Utils_Date::customFormat($cs->receive_date, $config->dateformatDatetime);
6dcc4d9d 523 $result[$cs->id]['pcp_id'] = $cs->pcp_id;
dfe9afbf 524 $result[$cs->id]['pcp_title'] = ($cs->pcp_title) ? $cs->pcp_title : 'n/a';
6dcc4d9d 525 $result[$cs->id]['pcp_display_in_roll'] = $cs->pcp_display_in_roll;
526 $result[$cs->id]['pcp_roll_nickname'] = $cs->pcp_roll_nickname;
527 $result[$cs->id]['pcp_personal_note'] = $cs->pcp_personal_note;
dfe9afbf 528 $result[$cs->id]['contribution_status'] = $cs->contribution_status;
529 $result[$cs->id]['sct_label'] = $cs->sct_label;
530 $replace = array(
531 'contributionid' => $cs->contribution_id,
532 'contactId' => $cs->contributor_id,
533 );
534 $result[$cs->id]['links'] = CRM_Core_Action::formLink($links, NULL, $replace);
6dcc4d9d 535
536 if ($isTest) {
cd355351 537 $result[$cs->id]['contribution_status'] = CRM_Core_TestEntity::appendTestText($result[$cs->id]['contribution_status']);
6dcc4d9d 538 }
539 }
540 return $result;
541 }
1421174e 542
186c9c17 543 /**
d424ffde
CW
544 * Function to assign honor profile fields to template/form, if $honorId (as soft-credit's contact_id)
545 * is passed then whole honoreeprofile fields with title/value assoc array assigned or only honoreeName
546 * is assigned
547 *
c490a46a
CW
548 * @param CRM_Core_Form $form
549 * @param array $params
100fef9d 550 * @param int $honorId
186c9c17 551 */
4779abb3 552 public static function formatHonoreeProfileFields($form, $params, $honorId = NULL) {
553 if (empty($form->_values['honoree_profile_id'])) {
554 return;
555 }
556 $profileContactType = CRM_Core_BAO_UFGroup::getContactType($form->_values['honoree_profile_id']);
557 $profileFields = CRM_Core_BAO_UFGroup::getFields($form->_values['honoree_profile_id']);
1421174e 558 $honoreeProfileFields = $values = array();
8af73472 559 $honorName = NULL;
1421174e 560
561 if ($honorId) {
562 CRM_Core_BAO_UFGroup::getValues($honorId, $profileFields, $values, FALSE, $params);
8af73472 563 if (empty($params)) {
564 foreach ($profileFields as $name => $field) {
565 $title = $field['title'];
566 $params[$field['name']] = $values[$title];
567 }
568 }
1421174e 569 }
570
571 //remove name related fields and construct name string with prefix/suffix
572 //which will be later assigned to template
573 switch ($profileContactType) {
574 case 'Individual':
575 if (array_key_exists('prefix_id', $params)) {
576 $honorName = CRM_Utils_Array::value(CRM_Utils_Array::value('prefix_id', $params),
577 CRM_Core_PseudoConstant::get('CRM_Contact_DAO_Contact', 'prefix_id')
578 );
579 unset($profileFields['prefix_id']);
580 }
874c9be7
TO
581 $honorName .= ' ' . $params['first_name'] . ' ' . $params['last_name'];
582 unset($profileFields['first_name']);
583 unset($profileFields['last_name']);
584 if (array_key_exists('suffix_id', $params)) {
585 $honorName .= ' ' . CRM_Utils_Array::value(CRM_Utils_Array::value('suffix_id', $params),
1421174e 586 CRM_Core_PseudoConstant::get('CRM_Contact_DAO_Contact', 'suffix_id')
587 );
874c9be7
TO
588 unset($profileFields['suffix_id']);
589 }
590 break;
591
592 case 'Organization':
593 $honorName = $params['organization_name'];
594 unset($profileFields['organization_name']);
595 break;
596
597 case 'Household':
598 $honorName = $params['household_name'];
599 unset($profileFields['household_name']);
600 break;
1421174e 601 }
602
603 if ($honorId) {
604 $honoreeProfileFields['Name'] = $honorName;
605 foreach ($profileFields as $name => $field) {
606 $title = $field['title'];
607 $honoreeProfileFields[$title] = $values[$title];
608 }
609 $form->assign('honoreeProfile', $honoreeProfileFields);
610 }
611 else {
612 $form->assign('honorName', $honorName);
613 }
614 }
96025800 615
a45a51e3 616}