ts('Name')], CRM_Core_BAO_Setting::valueOptions(CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME, 'contact_autocomplete_options', TRUE, NULL, FALSE, 'name', TRUE ) ); //get the read only field data. $returnProperties = array_fill_keys(array_keys($readOnlyFields), 1); $contactDetails = CRM_Contact_BAO_Contact_Utils::contactDetails($this->_participantIds, 'CiviEvent', $returnProperties ); $this->assign('contactDetails', $contactDetails); $this->assign('readOnlyFields', $readOnlyFields); } /** * Build the form object. * * @throws \CRM_Core_Exception */ public function buildQuickForm() { $ufGroupId = $this->get('ufGroupId'); if (!$ufGroupId) { CRM_Core_Error::statusBounce('ufGroupId is missing'); } $this->_title = ts('Update multiple participants') . ' - ' . CRM_Core_BAO_UFGroup::getTitle($ufGroupId); CRM_Utils_System::setTitle($this->_title); $this->addDefaultButtons(ts('Save')); $this->_fields = CRM_Core_BAO_UFGroup::getFields($ufGroupId, FALSE, CRM_Core_Action::VIEW); if (array_key_exists('participant_status', $this->_fields)) { $this->assign('statusProfile', 1); $this->assignToTemplate(); } // remove file type field and then limit fields $suppressFields = FALSE; $removehtmlTypes = ['File']; foreach ($this->_fields as $name => $field) { if ($cfID = CRM_Core_BAO_CustomField::getKeyID($name) && in_array($this->_fields[$name]['html_type'], $removehtmlTypes) ) { $suppressFields = TRUE; unset($this->_fields[$name]); } //fix to reduce size as we are using this field in grid if (is_array($field['attributes']) && $this->_fields[$name]['attributes']['size'] > 19) { //shrink class to "form-text-medium" $this->_fields[$name]['attributes']['size'] = 19; } } $this->_fields = array_slice($this->_fields, 0, $this->_maxFields); $this->addButtons([ [ 'type' => 'submit', 'name' => ts('Update Participant(s)'), 'isDefault' => TRUE, ], [ 'type' => 'cancel', 'name' => ts('Cancel'), ], ]); $this->assign('profileTitle', $this->_title); $this->assign('componentIds', $this->_participantIds); $fileFieldExists = FALSE; //load all campaigns. if (array_key_exists('participant_campaign_id', $this->_fields)) { $this->_componentCampaigns = []; CRM_Core_PseudoConstant::populate($this->_componentCampaigns, 'CRM_Event_DAO_Participant', TRUE, 'campaign_id', 'id', ' id IN (' . implode(' , ', array_values($this->_participantIds)) . ' ) ' ); } //fix for CRM-2752 // get the option value for custom data type $customDataType = CRM_Core_OptionGroup::values('custom_data_type', FALSE, FALSE, FALSE, NULL, 'name'); $this->_roleCustomDataTypeID = array_search('ParticipantRole', $customDataType); $this->_eventNameCustomDataTypeID = array_search('ParticipantEventName', $customDataType); $this->_eventTypeCustomDataTypeID = array_search('ParticipantEventType', $customDataType); // build custom data getFields array $customFieldsRole = CRM_Core_BAO_CustomField::getFields('Participant', FALSE, FALSE, NULL, $this->_roleCustomDataTypeID); $customFieldsEvent = CRM_Core_BAO_CustomField::getFields('Participant', FALSE, FALSE, NULL, $this->_eventNameCustomDataTypeID); $customFieldsEventType = CRM_Core_BAO_CustomField::getFields('Participant', FALSE, FALSE, NULL, $this->_eventTypeCustomDataTypeID); $customFields = CRM_Utils_Array::crmArrayMerge($customFieldsRole, CRM_Core_BAO_CustomField::getFields('Participant', FALSE, FALSE, NULL, NULL, TRUE) ); $customFields = CRM_Utils_Array::crmArrayMerge($customFieldsEventType, $customFields); $this->_customFields = CRM_Utils_Array::crmArrayMerge($customFieldsEvent, $customFields); foreach ($this->_participantIds as $participantId) { $roleId = CRM_Core_DAO::getFieldValue("CRM_Event_DAO_Participant", $participantId, 'role_id'); $eventId = CRM_Core_DAO::getFieldValue("CRM_Event_DAO_Participant", $participantId, 'event_id'); $eventTypeId = CRM_Core_DAO::getFieldValue("CRM_Event_DAO_Event", $eventId, 'event_type_id'); foreach ($this->_fields as $name => $field) { if ($customFieldID = CRM_Core_BAO_CustomField::getKeyID($name)) { $customValue = $this->_customFields[$customFieldID] ?? NULL; $entityColumnValue = []; if (!empty($customValue['extends_entity_column_value'])) { $entityColumnValue = explode(CRM_Core_DAO::VALUE_SEPARATOR, $customValue['extends_entity_column_value'] ); } if (($this->_roleCustomDataTypeID == $customValue['extends_entity_column_id']) && in_array($roleId, $entityColumnValue) ) { CRM_Core_BAO_UFGroup::buildProfile($this, $field, NULL, $participantId); } elseif (($this->_eventNameCustomDataTypeID == $customValue['extends_entity_column_id']) && in_array($eventId, $entityColumnValue) ) { CRM_Core_BAO_UFGroup::buildProfile($this, $field, NULL, $participantId); } elseif ($this->_eventTypeCustomDataTypeID == $customValue['extends_entity_column_id'] && in_array($eventTypeId, $entityColumnValue) ) { CRM_Core_BAO_UFGroup::buildProfile($this, $field, NULL, $participantId); } elseif (CRM_Utils_System::isNull($entityColumnValue)) { CRM_Core_BAO_UFGroup::buildProfile($this, $field, NULL, $participantId); } } else { if ($field['name'] === 'participant_role') { $field['is_multiple'] = TRUE; } // handle non custom fields CRM_Core_BAO_UFGroup::buildProfile($this, $field, NULL, $participantId); } } } $this->assign('fields', $this->_fields); // don't set the status message when form is submitted. $buttonName = $this->controller->getButtonName('submit'); if ($suppressFields && $buttonName !== '_qf_Batch_next') { CRM_Core_Session::setStatus(ts("File type field(s) in the selected profile are not supported for Update multiple participants."), ts('Unsupported Field Type'), 'info'); } $this->addDefaultButtons(ts('Update Participant(s)')); } /** * Set default values for the form. * * @return array */ public function setDefaultValues() { if (empty($this->_fields)) { return []; } $defaults = []; foreach ($this->_participantIds as $participantId) { $details[$participantId] = []; $details[$participantId] = CRM_Event_BAO_Participant::participantDetails($participantId); CRM_Core_BAO_UFGroup::setProfileDefaults(NULL, $this->_fields, $defaults, FALSE, $participantId, 'Event'); //get the from status ids, CRM-4323 if (array_key_exists('participant_status', $this->_fields)) { $this->_fromStatusIds[$participantId] = $defaults["field[$participantId][participant_status]"] ?? NULL; } if (array_key_exists('participant_role', $this->_fields)) { if ($defaults["field[{$participantId}][participant_role]"]) { $roles = $defaults["field[{$participantId}][participant_role]"]; foreach (explode(CRM_Core_DAO::VALUE_SEPARATOR, $roles) as $k => $v) { $defaults["field[$participantId][participant_role][{$v}]"] = 1; } unset($defaults["field[{$participantId}][participant_role]"]); } } } $this->assign('details', $details); return $defaults; } /** * Process the form after the input has been submitted and validated. */ public function postProcess() { $params = $this->exportValues(); $this->submit($params); } /** * @param int $participantId * @param int $statusId * * @throws \CRM_Core_Exception * @throws \CiviCRM_API3_Exception */ public static function updatePendingOnlineContribution($participantId, $statusId) { $contributionId = CRM_Contribute_BAO_Contribution::checkOnlinePendingContribution($participantId, 'Event' ); if (!$contributionId) { return; } //status rules. //1. participant - positive => contribution - completed. //2. participant - negative => contribution - cancelled. $positiveStatuses = CRM_Event_PseudoConstant::participantStatus(NULL, "class = 'Positive'"); $negativeStatuses = CRM_Event_PseudoConstant::participantStatus(NULL, "class = 'Negative'"); $contributionStatuses = CRM_Contribute_PseudoConstant::contributionStatus(NULL, 'name'); if (array_key_exists($statusId, $positiveStatuses)) { $params = [ 'component_id' => $participantId, 'contribution_id' => $contributionId, 'IAmAHorribleNastyBeyondExcusableHackInTheCRMEventFORMTaskClassThatNeedsToBERemoved' => 1, ]; //change related contribution status. self::updateContributionStatus($params); } if (array_key_exists($statusId, $negativeStatuses)) { civicrm_api3('Contribution', 'create', ['id' => $contributionId, 'contribution_status_id' => 'Cancelled']); return; } } /** * Update contribution status. * * @param array $params * * @throws \CRM_Core_Exception * @throws \CiviCRM_API3_Exception * @throws \Exception * * @deprecated * This is only called from one place in the code & * it is unclear whether it is a function on the way in or on the way out * */ public static function updateContributionStatus($params) { // get minimum required values. $componentId = $params['component_id'] ?? NULL; $contributionId = $params['contribution_id'] ?? NULL; $input = $ids = $objects = []; //get the required ids. $ids['contribution'] = $contributionId; $ids['participant'] = $params['component_id']; if (!$ids['contact'] = CRM_Utils_Array::value('contact_id', $params)) { $ids['contact'] = CRM_Core_DAO::getFieldValue('CRM_Contribute_DAO_Contribution', $contributionId, 'contact_id' ); } if (!$ids['event'] = CRM_Utils_Array::value('event_id', $params)) { $ids['event'] = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_Participant', $componentId, 'event_id' ); } $input['component'] = 'event'; $baseIPN = new CRM_Core_Payment_BaseIPN(); // reset template values. $template = CRM_Core_Smarty::singleton(); $template->clearTemplateVars(); if (!$baseIPN->validateData($input, $ids, $objects, FALSE)) { throw new CRM_Core_Exception('validation error'); } $contribution = &$objects['contribution']; $contributionStatuses = CRM_Core_PseudoConstant::get('CRM_Contribute_DAO_Contribution', 'contribution_status_id', [ 'labelColumn' => 'name', 'flip' => 1, ]); $input['IAmAHorribleNastyBeyondExcusableHackInTheCRMEventFORMTaskClassThatNeedsToBERemoved'] = $params['IAmAHorribleNastyBeyondExcusableHackInTheCRMEventFORMTaskClassThatNeedsToBERemoved'] ?? NULL; // status is not pending if ($contribution->contribution_status_id != $contributionStatuses['Pending']) { return; } //set values for ipn code. foreach ([ 'fee_amount', 'check_number', 'payment_instrument_id', ] as $field) { if (!$input[$field] = CRM_Utils_Array::value($field, $params)) { $input[$field] = $contribution->$field; } } if (!$input['trxn_id'] = CRM_Utils_Array::value('trxn_id', $params)) { $input['trxn_id'] = $contribution->invoice_id; } if (!$input['amount'] = CRM_Utils_Array::value('total_amount', $params)) { $input['amount'] = $contribution->total_amount; } $input['is_test'] = $contribution->is_test; $input['net_amount'] = $contribution->net_amount; if (!empty($input['fee_amount']) && !empty($input['amount'])) { $input['net_amount'] = $input['amount'] - $input['fee_amount']; } //complete the contribution. // @todo use the api - ie civicrm_api3('Contribution', 'completetransaction', $input); // as this method is not preferred / supported. CRM_Contribute_BAO_Contribution::completeOrder($input, [ 'related_contact' => $ids['related_contact'] ?? NULL, 'participant' => !empty($objects['participant']) ? $objects['participant']->id : NULL, 'contributionRecur' => NULL, ], $objects); // reset template values before processing next transactions $template->clearTemplateVars(); } /** * Assign the minimal set of variables to the template. */ public function assignToTemplate() { $notifyingStatuses = ['Pending from waitlist', 'Pending from approval', 'Expired', 'Cancelled']; $notifyingStatuses = array_intersect($notifyingStatuses, CRM_Event_PseudoConstant::participantStatus()); $this->assign('status', TRUE); if (!empty($notifyingStatuses)) { $s = '' . implode(', ', $notifyingStatuses) . ''; $this->assign('notifyingStatuses', $s); } } /** * @param array $params * * @throws \CRM_Core_Exception * @throws \CiviCRM_API3_Exception */ public function submit($params) { $statusClasses = CRM_Event_PseudoConstant::participantStatusClass(); if (isset($params['field'])) { foreach ($params['field'] as $participantID => $value) { //check for custom data $value['custom'] = CRM_Core_BAO_CustomField::postProcess($value, $participantID, 'Participant' ); foreach (array_keys($value) as $fieldName) { // Unset the original custom field now that it has been formatting to the 'custom' // array as it may not be in the right format for the api as is (notably for // multiple checkbox values). // @todo extract submit functions on other Batch update classes & // extend CRM_Event_Form_Task_BatchTest::testSubmit with a data provider to test them. if (substr($fieldName, 0, 7) === 'custom_') { unset($value[$fieldName]); } } $value['id'] = $participantID; if (!empty($value['participant_role'])) { if (is_array($value['participant_role'])) { $value['role_id'] = implode(CRM_Core_DAO::VALUE_SEPARATOR, array_keys($value['participant_role'])); } else { $value['role_id'] = $value['participant_role']; } } //need to send mail when status change $statusChange = FALSE; $relatedStatusChange = FALSE; if (!empty($value['participant_status'])) { $value['status_id'] = $value['participant_status']; $fromStatusId = $this->_fromStatusIds[$participantID] ?? NULL; if (!$fromStatusId) { $fromStatusId = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_Participant', $participantID, 'status_id'); } if ($fromStatusId != $value['status_id']) { $relatedStatusChange = TRUE; } if ($statusClasses[$fromStatusId] != $statusClasses[$value['status_id']]) { $statusChange = TRUE; } } unset($value['participant_status']); civicrm_api3('Participant', 'create', $value); //need to trigger mails when we change status if ($statusChange) { CRM_Event_BAO_Participant::transitionParticipants([$participantID], $value['status_id'], $fromStatusId); } if ($relatedStatusChange && $participantID && $value['status_id']) { //update related contribution status, CRM-4395 self::updatePendingOnlineContribution((int) $participantID, $value['status_id']); } } CRM_Core_Session::setStatus(ts('The updates have been saved.'), ts('Saved'), 'success'); } else { CRM_Core_Session::setStatus(ts('No updates have been saved.'), ts('Not Saved'), 'alert'); } } }