Merge in 5.32
[civicrm-core.git] / CRM / Event / Form / SelfSvcTransfer.php
CommitLineData
97d8187a
DG
1<?php
2
3/*
4 +--------------------------------------------------------------------+
bc77d7c0 5 | Copyright CiviCRM LLC. All rights reserved. |
97d8187a 6 | |
bc77d7c0
TO
7 | This work is published under the GNU AGPLv3 license with some |
8 | permitted exceptions and without any warranty. For full license |
9 | and copyright information, see https://civicrm.org/licensing |
97d8187a
DG
10 +--------------------------------------------------------------------+
11 */
12
13/**
14 *
15 * @package CRM
ca5cec67 16 * @copyright CiviCRM LLC https://civicrm.org/licensing
97d8187a
DG
17 */
18
19/**
20 * This class generates form components to transfer an Event to another participant
21 *
22 */
23class CRM_Event_Form_SelfSvcTransfer extends CRM_Core_Form {
24 /**
25 * from particpant id
26 *
27 * @var string
28 *
29 */
30 protected $_from_participant_id;
31 /**
32 * from contact id
33 *
34 * @var string
35 *
36 */
37 protected $_from_contact_id;
38 /**
39 * last name of the particpant to transfer to
40 *
41 * @var string
42 *
43 */
44 protected $_to_contact_last_name;
45 /**
46 * first name of the particpant to transfer to
47 *
48 * @var string
49 *
50 */
51 protected $_to_contact_first_name;
52 /**
53 * email of participant
54 *
55 *
56 * @var string
57 */
58 protected $_to_contact_email;
59 /**
60 * _to_contact_id
61 *
62 * @var string
63 */
64 protected $_to_contact_id;
65 /**
66 * event to be cancelled/transferred
67 *
68 * @var string
69 */
70 protected $_event_id;
71 /**
72 * event title
73 *
74 * @var string
75 */
76 protected $_event_title;
77 /**
78 * event title
79 *
80 * @var string
81 */
82 protected $_event_start_date;
83 /**
84 * action
85 *
86 * @var string
87 */
3a936dab 88 public $_action;
97d8187a
DG
89 /**
90 * participant object
91 *
92 * @var string
93 */
be2fb01f 94 protected $_participant = [];
97d8187a
DG
95 /**
96 * particpant values
97 *
90b461f1 98 * @var string
97d8187a
DG
99 */
100 protected $_part_values;
101 /**
102 * details
103 *
90b461f1 104 * @var array
97d8187a 105 */
be2fb01f 106 protected $_details = [];
97d8187a
DG
107 /**
108 * line items
109 *
90b461f1 110 * @var array
97d8187a 111 */
be2fb01f 112 protected $_line_items = [];
97d8187a
DG
113 /**
114 * contact_id
115 *
90b461f1 116 * @var int
97d8187a
DG
117 */
118 protected $contact_id;
974bdb44 119
e219d53b 120 /**
121 * Is backoffice form?
122 *
90b461f1 123 * @var bool
e219d53b 124 */
125 protected $isBackoffice = FALSE;
126
97d8187a
DG
127 /**
128 * Get source values for transfer based on participant id in URL. Line items will
129 * be transferred to this participant - at this point no transaction changes processed
130 *
131 * return @void
5db18d97 132 *
133 * @throws \CRM_Core_Exception
97d8187a
DG
134 */
135 public function preProcess() {
97d8187a
DG
136 $session = CRM_Core_Session::singleton();
137 $this->_userContext = $session->readUserContext();
138 $this->_from_participant_id = CRM_Utils_Request::retrieve('pid', 'Positive', $this, FALSE, NULL, 'REQUEST');
af29aaac 139 $this->_userChecksum = CRM_Utils_Request::retrieve('cs', 'String', $this, FALSE, NULL, 'REQUEST');
c0fc0432 140 $this->isBackoffice = CRM_Utils_Request::retrieve('is_backoffice', 'String', $this, FALSE, NULL, 'REQUEST') ?? FALSE;
be2fb01f
CW
141 $params = ['id' => $this->_from_participant_id];
142 $participant = $values = [];
97d8187a
DG
143 $this->_participant = CRM_Event_BAO_Participant::getValues($params, $values, $participant);
144 $this->_part_values = $values[$this->_from_participant_id];
145 $this->set('values', $this->_part_values);
146 $this->_event_id = $this->_part_values['event_id'];
af29aaac 147 $url = CRM_Utils_System::url('civicrm/event/info', "reset=1&id={$this->_event_id}");
97d8187a 148 $this->_from_contact_id = $this->_part_values['participant_contact_id'];
af29aaac 149 $validUser = CRM_Contact_BAO_Contact_Utils::validChecksum($this->_from_contact_id, $this->_userChecksum);
150 if (!$validUser && !CRM_Core_Permission::check('edit all events')) {
151 CRM_Core_Error::statusBounce(ts('You do not have sufficient permission to transfer/cancel this participant.'), $url);
152 }
97d8187a
DG
153 $this->assign('action', $this->_action);
154 if ($this->_from_participant_id) {
155 $this->assign('participantId', $this->_from_participant_id);
156 }
5db18d97 157
97d8187a
DG
158 $daoName = 'title';
159 $this->_event_title = CRM_Event_BAO_Event::getFieldValue('CRM_Event_DAO_Event', $this->_event_id, $daoName);
160 $daoName = 'start_date';
161 $this->_event_start_date = CRM_Event_BAO_Event::getFieldValue('CRM_Event_DAO_Event', $this->_event_id, $daoName);
162 list($displayName, $email) = CRM_Contact_BAO_Contact_Location::getEmailDetails($this->_from_contact_id);
163 $this->_contact_name = $displayName;
164 $this->_contact_email = $email;
5db18d97 165
97d8187a 166 $details = CRM_Event_BAO_Participant::participantDetails($this->_from_participant_id);
4a3451de 167 $selfServiceDetails = CRM_Event_BAO_Participant::getSelfServiceEligibility($this->_from_participant_id, $url, $this->isBackoffice);
c0fc0432
JG
168 if (!$selfServiceDetails['eligible']) {
169 CRM_Core_Error::statusBounce($selfServiceDetails['ineligible_message'], $url, ts('Sorry'));
170 }
4a3451de 171 $details = array_merge($details, $selfServiceDetails);
97d8187a
DG
172 $this->assign('details', $details);
173 //This participant row will be cancelled. Get line item(s) to cancel
174 $this->selfsvctransferUrl = CRM_Utils_System::url('civicrm/event/selfsvcupdate',
175 "reset=1&id={$this->_from_participant_id}&id=0");
176 $this->selfsvctransferText = ts('Update');
177 $this->selfsvctransferButtonText = ts('Update');
178 }
974bdb44 179
97d8187a
DG
180 /**
181 * Build form for input of transferree email, name
182 *
183 * return @void
184 */
185 public function buildQuickForm() {
e219d53b 186 // use entityRef select field for contact when this form is used by staff/admin user
187 if ($this->isBackoffice) {
be2fb01f 188 $this->addEntityRef("contact_id", ts('Select Contact'), ['create' => TRUE], TRUE);
e219d53b 189 }
190 // for front-end user show and use the basic three fields used to create a contact
191 else {
6dabf459
ML
192 $this->add('text', 'email', ts('To Email'), $this->_contact_email, TRUE);
193 $this->add('text', 'last_name', ts('To Last Name'), $this->_to_contact_last_name, TRUE);
194 $this->add('text', 'first_name', ts('To First Name'), $this->_to_contact_first_name, TRUE);
e219d53b 195 }
196
be2fb01f
CW
197 $this->addButtons([
198 [
97d8187a 199 'type' => 'submit',
be2fb01f
CW
200 'name' => ts('Transfer Registration'),
201 ],
202 ]);
203 $this->addFormRule(['CRM_Event_Form_SelfSvcTransfer', 'formRule'], $this);
97d8187a
DG
204 parent::buildQuickForm();
205 }
974bdb44 206
97d8187a
DG
207 /**
208 * Set defaults
209 *
210 * return @array _defaults
211 */
212 public function setDefaultValues() {
be2fb01f 213 $this->_defaults = [];
97d8187a
DG
214 return $this->_defaults;
215 }
974bdb44 216
97d8187a
DG
217 /**
218 * Validate email and name input
219 *
220 * return array $errors
221 */
222 public static function formRule($fields, $files, $self) {
be2fb01f 223 $errors = [];
e219d53b 224 if (!empty($fields['contact_id'])) {
225 $to_contact_id = $fields['contact_id'];
226 }
227 else {
228 //check that either an email or firstname+lastname is included in the form(CRM-9587)
229 $to_contact_id = self::checkProfileComplete($fields, $errors, $self);
230 }
97d8187a 231 //To check if the user is already registered for the event(CRM-2426)
e219d53b 232 if (!empty($to_contact_id)) {
e3b510fe 233 self::checkRegistration($fields, $self, $to_contact_id, $errors);
234 }
97d8187a
DG
235 //return parent::formrule($fields, $files, $self);
236 return empty($errors) ? TRUE : $errors;
237 }
974bdb44 238
97d8187a
DG
239 /**
240 * Check whether profile (name, email) is complete
241 *
242 * return $contact_id
243 */
244 public static function checkProfileComplete($fields, &$errors, $self) {
245 $email = '';
246 foreach ($fields as $fieldname => $fieldvalue) {
247 if (substr($fieldname, 0, 5) == 'email' && $fieldvalue) {
248 $email = $fieldvalue;
249 }
250 }
99afef64 251 if (empty($email) && (empty($fields['first_name']) || empty($fields['last_name']))) {
97d8187a
DG
252 $message = ts("Mandatory fields (first name and last name, OR email address) are missing from this form.");
253 $errors['_qf_default'] = $message;
254 }
255 $contact = CRM_Contact_BAO_Contact::matchContactOnEmail($email, "");
256 $contact_id = empty($contact->contact_id) ? NULL : $contact->contact_id;
e3b510fe 257 if (!CRM_Utils_Rule::email($fields['email'])) {
258 $errors['email'] = ts('Enter valid email address.');
259 }
260 if (empty($errors) && empty($contact_id)) {
be2fb01f 261 $params = [
6187cca4
CW
262 'email-Primary' => $fields['email'] ?? NULL,
263 'first_name' => $fields['first_name'] ?? NULL,
264 'last_name' => $fields['last_name'] ?? NULL,
265 'is_deleted' => $fields['is_deleted'] ?? FALSE,
be2fb01f 266 ];
97d8187a
DG
267 //create new contact for this name/email pair
268 //if new contact, no need to check for contact already registered
269 $contact_id = CRM_Contact_BAO_Contact::createProfileContact($params, $fields, $contact_id);
270 }
271 return $contact_id;
272 }
974bdb44 273
97d8187a
DG
274 /**
275 * Check contact details
276 *
277 * return @void
278 */
4abc4ee1 279 public static function checkRegistration($fields, $self, $contact_id, &$errors) {
97d8187a 280 // verify whether this contact already registered for this event
97d8187a
DG
281 $contact_details = CRM_Contact_BAO_Contact::getContactDetails($contact_id);
282 $display_name = $contact_details[0];
5db18d97 283 $query = 'select event_id from civicrm_participant where contact_id = ' . $contact_id;
33621c4f 284 $dao = CRM_Core_DAO::executeQuery($query);
97d8187a 285 while ($dao->fetch()) {
90b461f1 286 $to_event_id[] = $dao->event_id;
97d8187a
DG
287 }
288 if (!empty($to_event_id)) {
289 foreach ($to_event_id as $id) {
290 if ($id == $self->_event_id) {
4abc4ee1 291 $errors['email'] = $display_name . ts(" is already registered for this event");
97d8187a
DG
292 }
293 }
294 }
295 }
974bdb44 296
97d8187a
DG
297 /**
298 * Process transfer - first add the new participant to the event, then cancel
299 * source participant - send confirmation email to transferee
5db18d97 300 *
301 * @throws \CiviCRM_API3_Exception
97d8187a
DG
302 */
303 public function postProcess() {
304 //For transfer, process form to allow selection of transferree
305 $params = $this->controller->exportValues($this->_name);
e219d53b 306 if (!empty($params['contact_id'])) {
307 $contact_id = $params['contact_id'];
308 }
309 else {
310 //cancel 'from' participant row
be2fb01f 311 $contact_id_result = civicrm_api3('Contact', 'get', [
d4a64d9a 312 'sequential' => 1,
5db18d97 313 'return' => ['id'],
d4a64d9a 314 'email' => $params['email'],
be2fb01f
CW
315 'options' => ['limit' => 1],
316 ]);
d4a64d9a
AS
317 $contact_id_result = $contact_id_result['values'][0];
318 $contact_id = $contact_id_result['contact_id'];
319 $contact_is_deleted = $contact_id_result['contact_is_deleted'];
320 if ($contact_is_deleted || !is_numeric($contact_id)) {
2ddf0fcd 321 CRM_Core_Error::statusBounce(ts('Contact does not exist.'));
e219d53b 322 }
97d8187a 323 }
5db18d97 324
99afef64 325 $this->transferParticipantRegistration($contact_id, $this->_from_participant_id);
4720af1a 326
97d8187a
DG
327 $contact_details = CRM_Contact_BAO_Contact::getContactDetails($contact_id);
328 $display_name = current($contact_details);
329 $this->assign('to_participant', $display_name);
97d8187a
DG
330 $this->sendCancellation();
331 list($displayName, $email) = CRM_Contact_BAO_Contact_Location::getEmailDetails($contact_id);
be2fb01f
CW
332 $statusMsg = ts('Event registration information for %1 has been updated.', [1 => $displayName]);
333 $statusMsg .= ' ' . ts('A confirmation email has been sent to %1.', [1 => $email]);
974bdb44 334 CRM_Core_Session::setStatus($statusMsg, ts('Registration Transferred'), 'success');
e219d53b 335 if ($this->isBackoffice) {
336 return;
337 }
e3b510fe 338 $url = CRM_Utils_System::url('civicrm/event/info', "reset=1&id={$this->_event_id}");
339 CRM_Utils_System::redirect($url);
97d8187a 340 }
974bdb44 341
97d8187a
DG
342 /**
343 * Based on input, create participant row for transferee and send email
344 *
345 * return @ void
5db18d97 346 *
347 * @throws \CRM_Core_Exception
97d8187a
DG
348 */
349 public function participantTransfer($participant) {
be2fb01f 350 $contactDetails = [];
97d8187a
DG
351 $contactIds[] = $participant->contact_id;
352 list($currentContactDetails) = CRM_Utils_Token::getTokenDetails($contactIds, NULL,
be2fb01f 353 FALSE, FALSE, NULL, [], 'CRM_Event_BAO_Participant');
97d8187a
DG
354 foreach ($currentContactDetails as $contactId => $contactValues) {
355 $contactDetails[$contactId] = $contactValues;
356 }
357 $participantRoles = CRM_Event_PseudoConstant::participantRole();
be2fb01f 358 $participantDetails = [];
97d8187a
DG
359 $query = "SELECT * FROM civicrm_participant WHERE id = " . $participant->id;
360 $dao = CRM_Core_DAO::executeQuery($query);
361 while ($dao->fetch()) {
be2fb01f 362 $participantDetails[$dao->id] = [
97d8187a
DG
363 'id' => $dao->id,
364 'role' => $participantRoles[$dao->role_id],
365 'is_test' => $dao->is_test,
366 'event_id' => $dao->event_id,
367 'status_id' => $dao->status_id,
368 'fee_amount' => $dao->fee_amount,
369 'contact_id' => $dao->contact_id,
370 'register_date' => $dao->register_date,
371 'registered_by_id' => $dao->registered_by_id,
be2fb01f 372 ];
97d8187a 373 }
be2fb01f 374 $domainValues = [];
97d8187a
DG
375 if (empty($domainValues)) {
376 $domain = CRM_Core_BAO_Domain::getDomain();
be2fb01f 377 $tokens = [
97d8187a 378 'domain' =>
be2fb01f 379 [
97d8187a
DG
380 'name',
381 'phone',
382 'address',
383 'email',
be2fb01f 384 ],
97d8187a 385 'contact' => CRM_Core_SelectValues::contactTokens(),
be2fb01f 386 ];
97d8187a
DG
387 foreach ($tokens['domain'] as $token) {
388 $domainValues[$token] = CRM_Utils_Token::getDomainTokenReplacement($token, $domain);
389 }
390 }
be2fb01f
CW
391 $eventDetails = [];
392 $eventParams = ['id' => $participant->event_id];
e3b510fe 393 CRM_Event_BAO_Event::retrieve($eventParams, $eventDetails);
97d8187a 394 //get default participant role.
9c1bc317 395 $eventDetails['participant_role'] = $participantRoles[$eventDetails['default_role_id']] ?? NULL;
97d8187a 396 //get the location info
be2fb01f 397 $locParams = [
97d8187a
DG
398 'entity_id' => $participant->event_id,
399 'entity_table' => 'civicrm_event',
be2fb01f 400 ];
e3b510fe 401 $eventDetails['location'] = CRM_Core_BAO_Location::getValues($locParams, TRUE);
9c1bc317 402 $toEmail = $contactDetails[$participant->contact_id]['email'] ?? NULL;
e3b510fe 403 if ($toEmail) {
404 //take a receipt from as event else domain.
405 $receiptFrom = $domainValues['name'] . ' <' . $domainValues['email'] . '>';
406 if (!empty($eventDetails['confirm_from_name']) && !empty($eventDetails['confirm_from_email'])) {
407 $receiptFrom = $eventDetails['confirm_from_name'] . ' <' . $eventDetails['confirm_from_email'] . '>';
408 }
409 $participantName = $contactDetails[$participant->contact_id]['display_name'];
be2fb01f 410 $tplParams = [
e3b510fe 411 'event' => $eventDetails,
412 'participant' => $participantDetails[$participant->id],
413 'participantID' => $participant->id,
414 'participant_status' => 'Registered',
be2fb01f 415 ];
e3b510fe 416
be2fb01f 417 $sendTemplateParams = [
e3b510fe 418 'groupName' => 'msg_tpl_workflow_event',
419 'valueName' => 'event_online_receipt',
420 'contactId' => $participantDetails[$participant->id]['contact_id'],
421 'tplParams' => $tplParams,
422 'from' => $receiptFrom,
423 'toName' => $participantName,
424 'toEmail' => $toEmail,
6b409353
CW
425 'cc' => $eventDetails['cc_confirm'] ?? NULL,
426 'bcc' => $eventDetails['bcc_confirm'] ?? NULL,
be2fb01f 427 ];
e3b510fe 428 CRM_Core_BAO_MessageTemplate::sendTemplate($sendTemplateParams);
429 }
97d8187a 430 }
974bdb44 431
97d8187a
DG
432 /**
433 * Send confirmation of cancellation to source participant
434 *
435 * return @ void
436 */
437 public function sendCancellation() {
be2fb01f 438 $domainValues = [];
97d8187a 439 $domain = CRM_Core_BAO_Domain::getDomain();
be2fb01f 440 $tokens = [
97d8187a 441 'domain' =>
be2fb01f 442 [
97d8187a
DG
443 'name',
444 'phone',
445 'address',
446 'email',
be2fb01f 447 ],
97d8187a 448 'contact' => CRM_Core_SelectValues::contactTokens(),
be2fb01f 449 ];
97d8187a
DG
450 foreach ($tokens['domain'] as $token) {
451 $domainValues[$token] = CRM_Utils_Token::getDomainTokenReplacement($token, $domain);
452 }
5db18d97 453
97d8187a 454 $participantRoles = CRM_Event_PseudoConstant::participantRole();
be2fb01f 455 $participantDetails = [];
97d8187a
DG
456 $query = "SELECT * FROM civicrm_participant WHERE id = {$this->_from_participant_id}";
457 $dao = CRM_Core_DAO::executeQuery($query);
458 while ($dao->fetch()) {
be2fb01f 459 $participantDetails[$dao->id] = [
97d8187a
DG
460 'id' => $dao->id,
461 'role' => $participantRoles[$dao->role_id],
462 'is_test' => $dao->is_test,
463 'event_id' => $dao->event_id,
464 'status_id' => $dao->status_id,
465 'fee_amount' => $dao->fee_amount,
466 'contact_id' => $dao->contact_id,
467 'register_date' => $dao->register_date,
468 'registered_by_id' => $dao->registered_by_id,
be2fb01f 469 ];
97d8187a 470 }
be2fb01f
CW
471 $eventDetails = [];
472 $eventParams = ['id' => $this->_event_id];
97d8187a
DG
473 CRM_Event_BAO_Event::retrieve($eventParams, $eventDetails[$this->_event_id]);
474 //get default participant role.
9c1bc317 475 $eventDetails[$this->_event_id]['participant_role'] = $participantRoles[$eventDetails[$this->_event_id]['default_role_id']] ?? NULL;
97d8187a 476 //get the location info
be2fb01f 477 $locParams = ['entity_id' => $this->_event_id, 'entity_table' => 'civicrm_event'];
97d8187a
DG
478 $eventDetails[$this->_event_id]['location'] = CRM_Core_BAO_Location::getValues($locParams, TRUE);
479 //get contact details
480 $contactIds[$this->_from_contact_id] = $this->_from_contact_id;
481 list($currentContactDetails) = CRM_Utils_Token::getTokenDetails($contactIds, NULL,
be2fb01f 482 FALSE, FALSE, NULL, [],
97d8187a
DG
483 'CRM_Event_BAO_Participant'
484 );
485 foreach ($currentContactDetails as $contactId => $contactValues) {
486 $contactDetails[$this->_from_contact_id] = $contactValues;
487 }
488 //send a 'cancelled' email to user, and cc the event's cc_confirm email
489 $mail = CRM_Event_BAO_Participant::sendTransitionParticipantMail($this->_from_participant_id,
490 $participantDetails[$this->_from_participant_id],
491 $eventDetails[$this->_event_id],
492 $contactDetails[$this->_from_contact_id],
493 $domainValues,
494 "Transferred",
495 ""
496 );
be2fb01f
CW
497 $statusMsg = ts('Event registration information for %1 has been updated.', [1 => $this->_contact_name]);
498 $statusMsg .= ' ' . ts('A cancellation email has been sent to %1.', [1 => $this->_contact_email]);
8b9023b8 499 CRM_Core_Session::setStatus($statusMsg, ts('Thanks'), 'success');
97d8187a
DG
500 }
501
4720af1a 502 /**
99afef64 503 * Move Participant registration to new contact.
4720af1a 504 *
505 * @param int $toContactID
506 * @param int $fromParticipantID
4720af1a 507 *
508 * @throws \CRM_Core_Exception
509 * @throws \CiviCRM_API3_Exception
510 */
99afef64
JP
511 public function transferParticipantRegistration($toContactID, $fromParticipantID) {
512 $toParticipantValues = \Civi\Api4\Participant::get()
513 ->addWhere('id', '=', $fromParticipantID)
514 ->execute()
515 ->first();
516
517 unset($toParticipantValues['id']);
518 $toParticipantValues['contact_id'] = $toContactID;
519 $toParticipantValues['status_id'] = CRM_Core_PseudoConstant::getKey('CRM_Event_BAO_Participant', 'status_id', 'Registered');
520 $toParticipantValues['register_date'] = date("Y-m-d");
4720af1a 521 //first create the new participant row -don't set registered_by yet or email won't be sent
99afef64
JP
522 $participant = CRM_Event_BAO_Participant::create($toParticipantValues);
523
4720af1a 524 //send a confirmation email to the new participant
525 $this->participantTransfer($participant);
526 //now update registered_by_id
527 $query = "UPDATE civicrm_participant cp SET cp.registered_by_id = %1 WHERE cp.id = ({$participant->id})";
528 $params = [1 => [$fromParticipantID, 'Integer']];
99afef64 529 CRM_Core_DAO::executeQuery($query, $params);
4720af1a 530 //copy line items to new participant
99afef64
JP
531 $line_items = CRM_Price_BAO_LineItem::getLineItems($fromParticipantID);
532 foreach ($line_items as $id => $item) {
533 //Remove contribution id from older participant line item.
534 CRM_Core_DAO::singleValueQuery("UPDATE civicrm_line_item SET contribution_id = NULL WHERE id = %1", [1 => [$id, 'Integer']]);
4720af1a 535 $item['entity_id'] = $participant->id;
536 $item['id'] = NULL;
537 $item['entity_table'] = "civicrm_participant";
99afef64
JP
538 $tolineItem = CRM_Price_BAO_LineItem::create($item);
539
540 //Update Financial Item for previous line item row.
541 $prevFinancialItem = CRM_Financial_BAO_FinancialItem::getPreviousFinancialItem($id);
542 $prevFinancialItem['contact_id'] = $toContactID;
543 $prevFinancialItem['entity_id'] = $tolineItem->id;
544 CRM_Financial_BAO_FinancialItem::create($prevFinancialItem);
4720af1a 545 }
546 //now cancel the from participant record, leaving the original line-item(s)
547 $value_from = [];
548 $value_from['id'] = $fromParticipantID;
549 $tansferId = array_search('Transferred', CRM_Event_PseudoConstant::participantStatus(NULL, "class = 'Negative'"));
550 $value_from['status_id'] = $tansferId;
551 $value_from['transferred_to_contact_id'] = $toContactID;
552 CRM_Event_BAO_Participant::create($value_from);
553 }
554
97d8187a 555}