3 +--------------------------------------------------------------------+
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2019 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
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. |
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. |
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 +--------------------------------------------------------------------+
32 * @copyright CiviCRM LLC (c) 2004-2019
36 class CRM_Event_BAO_ParticipantPayment
extends CRM_Event_DAO_ParticipantPayment
{
39 * Creates or updates a participant payment record.
41 * @param array $params
42 * of values to initialize the record with.
47 * the partcipant payment record
49 public static function create(&$params, $ids = []) {
50 $id = CRM_Utils_Array
::value('id', $params, CRM_Utils_Array
::value('id', $ids));
52 CRM_Utils_Hook
::pre('edit', 'ParticipantPayment', $id, $params);
55 CRM_Utils_Hook
::pre('create', 'ParticipantPayment', NULL, $params);
58 $participantPayment = new CRM_Event_BAO_ParticipantPayment();
59 $participantPayment->copyValues($params);
61 $participantPayment->id
= $id;
64 $participantPayment->find(TRUE);
66 $participantPayment->save();
68 if (empty($participantPayment->contribution_id
)) {
69 // For an id update contribution_id may be unknown. We want it
70 // further down so perhaps get it before the hooks.
71 $participantPayment->find(TRUE);
74 CRM_Utils_Hook
::post('edit', 'ParticipantPayment', $participantPayment->id
, $participantPayment);
77 CRM_Utils_Hook
::post('create', 'ParticipantPayment', $participantPayment->id
, $participantPayment);
80 //generally if people are creating participant_payments via the api they won't be setting the line item correctly - we can't help them if they are doing complex transactions
81 // but if they have a single line item for the contribution we can assume it should refer to the participant line
82 $lineItemCount = CRM_Core_DAO
::singleValueQuery("select count(*) FROM civicrm_line_item WHERE contribution_id = %1", [
84 $participantPayment->contribution_id
,
88 if ($lineItemCount == 1) {
89 $sql = "UPDATE civicrm_line_item li
90 SET entity_table = 'civicrm_participant', entity_id = %1
91 WHERE contribution_id = %2 AND entity_table = 'civicrm_contribution'";
92 CRM_Core_DAO
::executeQuery($sql, [
93 1 => [$participantPayment->participant_id
, 'Integer'],
94 2 => [$participantPayment->contribution_id
, 'Integer'],
98 return $participantPayment;
102 * Delete the record that are associated with this ParticipantPayment.
103 * Also deletes the associated contribution for this participant
105 * @param array $params
106 * Associative array whose values match the record to be deleted.
109 * true if deleted false otherwise
111 public static function deleteParticipantPayment($params) {
112 $participantPayment = new CRM_Event_DAO_ParticipantPayment();
115 foreach ($params as $field => $value) {
116 if (!empty($value)) {
117 $participantPayment->$field = $value;
123 CRM_Core_Error
::fatal();
126 if ($participantPayment->find(TRUE)) {
127 CRM_Utils_Hook
::pre('delete', 'ParticipantPayment', $participantPayment->id
, $params);
128 CRM_Contribute_BAO_Contribution
::deleteContribution($participantPayment->contribution_id
);
129 $participantPayment->delete();
130 CRM_Utils_Hook
::post('delete', 'ParticipantPayment', $participantPayment->id
, $participantPayment);
131 return $participantPayment;