INFRA-132 - CRM/Event - phpcbf
[civicrm-core.git] / CRM / Event / BAO / ParticipantPayment.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
6a488035 5 +--------------------------------------------------------------------+
06b69b18 6 | Copyright CiviCRM LLC (c) 2004-2014 |
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 +--------------------------------------------------------------------+
26*/
27
28/**
29 *
30 *
31 * @package CRM
06b69b18 32 * @copyright CiviCRM LLC (c) 2004-2014
6a488035
TO
33 * $Id$
34 *
35 */
36class CRM_Event_BAO_ParticipantPayment extends CRM_Event_DAO_ParticipantPayment {
37
38 /**
39 * Creates or updates a participant payment record
40 *
d4dd1e85
TO
41 * @param $params
42 * Array of values to initialize the record with.
43 * @param $ids
44 * Array with one values of id for this participantPayment record (for update).
6a488035
TO
45 *
46 * @return object the partcipant payment record
47 * @static
48 */
00be9182 49 public static function create(&$params, &$ids) {
6a488035
TO
50 if (isset($ids['id'])) {
51 CRM_Utils_Hook::pre('edit', 'ParticipantPayment', $ids['id'], $params);
52 }
53 else {
54 CRM_Utils_Hook::pre('create', 'ParticipantPayment', NULL, $params);
55 }
56
57 $participantPayment = new CRM_Event_BAO_ParticipantPayment();
58 $participantPayment->copyValues($params);
59 if (isset($ids['id'])) {
60 $participantPayment->id = CRM_Utils_Array::value('id', $ids);
0479b4c8 61 }
6a488035
TO
62 else {
63 $participantPayment->find(TRUE);
64 }
65 $participantPayment->save();
66
67 if (isset($ids['id'])) {
68 CRM_Utils_Hook::post('edit', 'ParticipantPayment', $ids['id'], $participantPayment);
69 }
70 else {
71 CRM_Utils_Hook::post('create', 'ParticipantPayment', NULL, $participantPayment);
72 }
73
86cbdcb1
EM
74 //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
75 // but if they have a single line item for the contribution we can assume it should refer to the participant line
76 $lineItemCount = CRM_Core_DAO::singleValueQuery("select count(*) FROM civicrm_line_item WHERE contribution_id = %1", array(1 => array($participantPayment->contribution_id, 'Integer')));
77 if($lineItemCount == 1) {
78 $sql = "UPDATE civicrm_line_item li
79 SET entity_table = 'civicrm_participant', entity_id = %1
80 WHERE contribution_id = %2 AND entity_table = 'civicrm_contribution'";
81 CRM_Core_DAO::executeQuery($sql, array(1 => array($participantPayment->participant_id, 'Integer'), 2 => array($participantPayment->contribution_id, 'Integer')));
82 }
83
6a488035
TO
84 return $participantPayment;
85 }
86
87 /**
88 * Delete the record that are associated with this ParticipantPayment
89 * Also deletes the associated contribution for this participant
90 *
d4dd1e85
TO
91 * @param array $params
92 * Associative array whose values match the record to be deleted.
6a488035
TO
93 *
94 * @return boolean true if deleted false otherwise
95 * @static
6a488035 96 */
00be9182 97 public static function deleteParticipantPayment($params) {
6a488035
TO
98 $participantPayment = new CRM_Event_DAO_ParticipantPayment();
99
100 $valid = FALSE;
101 foreach ($params as $field => $value) {
102 if (!empty($value)) {
103 $participantPayment->$field = $value;
104 $valid = TRUE;
105 }
106 }
107
108 if (!$valid) {
109 CRM_Core_Error::fatal();
110 }
111
112 if ($participantPayment->find(TRUE)) {
113 CRM_Utils_Hook::pre('delete', 'ParticipantPayment', $participantPayment->id, $params);
114 CRM_Contribute_BAO_Contribution::deleteContribution($participantPayment->contribution_id);
115 $participantPayment->delete();
116 CRM_Utils_Hook::post('delete', 'ParticipantPayment', $participantPayment->id, $participantPayment);
117 return $participantPayment;
118 }
119 return FALSE;
120 }
121}