INFRA-132 - CRM/Dedupe - phpcbf
[civicrm-core.git] / CRM / Event / Form / ParticipantView.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 * @package CRM
06b69b18 31 * @copyright CiviCRM LLC (c) 2004-2014
6a488035
TO
32 * $Id$
33 *
34 */
35
36/**
37 * This class generates form components for Participant
38 *
39 */
40class CRM_Event_Form_ParticipantView extends CRM_Core_Form {
41
96f50de2
CW
42 public $useLivePageJS = TRUE;
43
6a488035 44 /**
100fef9d 45 * Set variables up before form is built
6a488035
TO
46 *
47 * @return void
6a488035
TO
48 */
49 public function preProcess() {
50 $values = $ids = array();
51 $participantID = CRM_Utils_Request::retrieve('id', 'Positive', $this, TRUE);
52 $contactID = CRM_Utils_Request::retrieve('cid', 'Positive', $this, TRUE);
53 $params = array('id' => $participantID);
54
55 CRM_Event_BAO_Participant::getValues($params,
56 $values,
57 $ids
58 );
59
60 if (empty($values)) {
61 CRM_Core_Error::statusBounce(ts('The requested participant record does not exist (possibly the record was deleted).'));
62 }
63
64 CRM_Event_BAO_Participant::resolveDefaults($values[$participantID]);
65
a7488080 66 if (!empty($values[$participantID]['fee_level'])) {
6a488035
TO
67 CRM_Event_BAO_Participant::fixEventLevel($values[$participantID]['fee_level']);
68 }
69
fbc54416
PJ
70 $this->assign('contactId', $contactID);
71 $this->assign('participantId', $participantID);
0b2b58ea
PJ
72
73 $paymentId = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_ParticipantPayment',
74 $participantID, 'id', 'participant_id'
75 );
76 $this->assign('hasPayment', $paymentId);
77
28e4e707
PJ
78 if ($parentParticipantId = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_Participant',
79 $participantID, 'registered_by_id'
80 )) {
81 $parentHasPayment = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_ParticipantPayment',
82 $parentParticipantId, 'id', 'participant_id'
83 );
84 $this->assign('parentHasPayment', $parentHasPayment);
85 }
86
fbc54416
PJ
87 $statusId = CRM_Core_DAO::getFieldValue('CRM_Event_BAO_Participant', $participantID, 'status_id', 'id');
88 $participantStatuses = CRM_Event_PseudoConstant::participantStatus();
fbc54416 89
6a488035
TO
90 if ($values[$participantID]['is_test']) {
91 $values[$participantID]['status'] .= ' (test) ';
92 }
93
94 // Get Note
95 $noteValue = CRM_Core_BAO_Note::getNote($participantID, 'civicrm_participant');
96
97 $values[$participantID]['note'] = array_values($noteValue);
98
99
100 // Get Line Items
101 $lineItem = CRM_Price_BAO_LineItem::getLineItems($participantID);
102
103 if (!CRM_Utils_System::isNull($lineItem)) {
104 $values[$participantID]['lineItem'][] = $lineItem;
105 }
106
107 $values[$participantID]['totalAmount'] = CRM_Utils_Array::value('fee_amount', $values[$participantID]);
108
109 // Get registered_by contact ID and display_name if participant was registered by someone else (CRM-4859)
a7488080 110 if (!empty($values[$participantID]['participant_registered_by_id'])) {
6a488035
TO
111 $values[$participantID]['registered_by_contact_id'] = CRM_Core_DAO::getFieldValue("CRM_Event_DAO_Participant",
112 $values[$participantID]['participant_registered_by_id'],
113 'contact_id', 'id'
114 );
115 $values[$participantID]['registered_by_display_name'] = CRM_Contact_BAO_Contact::displayName($values[$participantID]['registered_by_contact_id']);
116 }
117
118 // Check if this is a primaryParticipant (registered for others) and retrieve additional participants if true (CRM-4859)
119 if (CRM_Event_BAO_Participant::isPrimaryParticipant($participantID)) {
120 $values[$participantID]['additionalParticipants'] = CRM_Event_BAO_Participant::getAdditionalParticipants($participantID);
121 }
122
123 // get the option value for custom data type
124 $roleCustomDataTypeID = CRM_Core_OptionGroup::getValue('custom_data_type', 'ParticipantRole', 'name');
125 $eventNameCustomDataTypeID = CRM_Core_OptionGroup::getValue('custom_data_type', 'ParticipantEventName', 'name');
126 $eventTypeCustomDataTypeID = CRM_Core_OptionGroup::getValue('custom_data_type', 'ParticipantEventType', 'name');
127 $allRoleIDs = explode(CRM_Core_DAO::VALUE_SEPARATOR, $values[$participantID]['role_id']);
128 $groupTree = array();
129 $finalTree = array();
130
131 foreach ($allRoleIDs as $k => $v) {
132 $roleGroupTree = CRM_Core_BAO_CustomGroup::getTree('Participant', $this, $participantID, NULL, $v, $roleCustomDataTypeID);
133 $eventGroupTree = &CRM_Core_BAO_CustomGroup::getTree('Participant', $this, $participantID, NULL,
134 $values[$participantID]['event_id'], $eventNameCustomDataTypeID
135 );
136 $eventTypeID = CRM_Core_DAO::getFieldValue("CRM_Event_DAO_Event", $values[$participantID]['event_id'], 'event_type_id', 'id');
137 $eventTypeGroupTree = CRM_Core_BAO_CustomGroup::getTree('Participant', $this, $participantID, NULL, $eventTypeID, $eventTypeCustomDataTypeID);
138 $groupTree = CRM_Utils_Array::crmArrayMerge($roleGroupTree, $eventGroupTree);
139 $groupTree = CRM_Utils_Array::crmArrayMerge($groupTree, $eventTypeGroupTree);
140 $groupTree = CRM_Utils_Array::crmArrayMerge($groupTree, CRM_Core_BAO_CustomGroup::getTree('Participant', $this, $participantID));
141 foreach ($groupTree as $treeId => $trees) {
142 $finalTree[$treeId] = $trees;
143 }
144 }
145 CRM_Core_BAO_CustomGroup::buildCustomDataView($this, $finalTree);
146 $eventTitle = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_Event', $values[$participantID]['event_id'], 'title');
147 //CRM-7150, show event name on participant view even if the event is disabled
a7488080 148 if (empty($values[$participantID]['event'])) {
6a488035
TO
149 $values[$participantID]['event'] = $eventTitle;
150 }
151
152 //do check for campaigns
153 if ($campaignId = CRM_Utils_Array::value('campaign_id', $values[$participantID])) {
154 $campaigns = CRM_Campaign_BAO_Campaign::getCampaigns($campaignId);
155 $values[$participantID]['campaign'] = $campaigns[$campaignId];
156 }
157
158 $this->assign($values[$participantID]);
159
160 // add viewed participant to recent items list
161 $url = CRM_Utils_System::url('civicrm/contact/view/participant',
162 "action=view&reset=1&id={$values[$participantID]['id']}&cid={$values[$participantID]['contact_id']}&context=home"
163 );
164
165 $recentOther = array();
166 if (CRM_Core_Permission::check('edit event participants')) {
167 $recentOther['editUrl'] = CRM_Utils_System::url('civicrm/contact/view/participant',
168 "action=update&reset=1&id={$values[$participantID]['id']}&cid={$values[$participantID]['contact_id']}&context=home"
169 );
170 }
171 if (CRM_Core_Permission::check('delete in CiviEvent')) {
172 $recentOther['deleteUrl'] = CRM_Utils_System::url('civicrm/contact/view/participant',
173 "action=delete&reset=1&id={$values[$participantID]['id']}&cid={$values[$participantID]['contact_id']}&context=home"
174 );
175 }
176
177 $participantRoles = CRM_Event_PseudoConstant::participantRole();
178 $displayName = CRM_Contact_BAO_Contact::displayName($values[$participantID]['contact_id']);
179
180 $participantCount = array();
03b412ae
PB
181 $invoiceSettings = CRM_Core_BAO_Setting::getItem(CRM_Core_BAO_Setting::CONTRIBUTE_PREFERENCES_NAME,'contribution_invoice_settings');
182 $invoicing = CRM_Utils_Array::value('invoicing', $invoiceSettings);
a32709be 183 $totalTaxAmount = 0;
6a488035
TO
184 foreach ($lineItem as $k => $v) {
185 if (CRM_Utils_Array::value('participant_count', $lineItem[$k]) > 0) {
aa4bb8d2 186 $participantCount[] = $lineItem[$k]['participant_count'];
6a488035 187 }
a32709be 188 $totalTaxAmount = $v['tax_amount'] + $totalTaxAmount;
6a488035 189 }
03b412ae
PB
190 if ($invoicing) {
191 $this->assign('totalTaxAmount', $totalTaxAmount);
192 }
6a488035
TO
193 if ($participantCount) {
194 $this->assign('pricesetFieldsCount', $participantCount);
195 }
196 $this->assign('displayName', $displayName);
197 // omitting contactImage from title for now since the summary overlay css doesn't work outside of our crm-container
198 CRM_Utils_System::setTitle(ts('View Event Registration for') . ' ' . $displayName);
199
200 $roleId = CRM_Utils_Array::value('role_id', $values[$participantID]);
201 $title = $displayName . ' (' . CRM_Utils_Array::value($roleId, $participantRoles) . ' - ' . $eventTitle . ')';
202
203 $sep = CRM_Core_DAO::VALUE_SEPARATOR;
204 $viewRoles = array();
205 foreach (explode($sep, $values[$participantID]['role_id']) as $k => $v) {
206 $viewRoles[] = $participantRoles[$v];
207 }
208 $values[$participantID]['role_id'] = implode(', ', $viewRoles);
209 $this->assign('role', $values[$participantID]['role_id']);
210 // add Participant to Recent Items
211 CRM_Utils_Recent::add($title,
212 $url,
213 $values[$participantID]['id'],
214 'Participant',
215 $values[$participantID]['contact_id'],
216 NULL,
217 $recentOther
218 );
219 }
220
221 /**
c490a46a 222 * Build the form object
6a488035 223 *
355ba699 224 * @return void
6a488035
TO
225 */
226 public function buildQuickForm() {
227 $this->addButtons(array(
228 array(
229 'type' => 'cancel',
230 'name' => ts('Done'),
231 'spacing' => '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;',
232 'isDefault' => TRUE,
233 ),
234 )
235 );
236 }
237}