Merge pull request #23221 from eileenmcnaughton/mapField
[civicrm-core.git] / CRM / Event / Form / Task / PickProfile.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
bc77d7c0 4 | Copyright CiviCRM LLC. All rights reserved. |
6a488035 5 | |
bc77d7c0
TO
6 | This work is published under the GNU AGPLv3 license with some |
7 | permitted exceptions and without any warranty. For full license |
8 | and copyright information, see https://civicrm.org/licensing |
6a488035 9 +--------------------------------------------------------------------+
d25dd0ee 10 */
6a488035
TO
11
12/**
13 *
14 * @package CRM
ca5cec67 15 * @copyright CiviCRM LLC https://civicrm.org/licensing
6a488035
TO
16 */
17
18/**
19 * This class provides the functionality for batch profile update for event participations
20 */
21class CRM_Event_Form_Task_PickProfile extends CRM_Event_Form_Task {
22
23 /**
66f9e52b 24 * The title of the group.
6a488035
TO
25 *
26 * @var string
27 */
28 protected $_title;
29
30 /**
66f9e52b 31 * Maximum event participations that should be allowed to update.
90b461f1 32 * @var int
6a488035
TO
33 */
34 protected $_maxParticipations = 100;
35
36 /**
66f9e52b 37 * Variable to store redirect path.
90b461f1 38 * @var string
6a488035
TO
39 */
40 protected $_userContext;
41
42 /**
66f9e52b 43 * Build all the data structures needed to build the form.
6a488035
TO
44 *
45 * @return void
03e04002 46 */
00be9182 47 public function preProcess() {
c490a46a 48 // initialize the task and row fields
6a488035
TO
49 parent::preProcess();
50
51 $session = CRM_Core_Session::singleton();
52 $this->_userContext = $session->readUserContext();
53
94fd9d17 54 $this->setTitle(ts('Update multiple participants'));
6a488035
TO
55
56 $validate = FALSE;
57 //validations
58 if (count($this->_participantIds) > $this->_maxParticipations) {
cfd47f69
BT
59 CRM_Core_Session::setStatus(ts("The maximum number of records you can select for Update multiple participants is %1. You have selected %2. Please select fewer participants from your search results and try again.", [
60 1 => $this->_maxParticipations,
61 2 => count($this->_participantIds),
62 ]));
6a488035
TO
63 $validate = TRUE;
64 }
65
66 // then redirect
67 if ($validate) {
68 CRM_Utils_System::redirect($this->_userContext);
69 }
70 }
71
72 /**
66f9e52b 73 * Build the form object.
6a488035 74 *
6a488035
TO
75 *
76 * @return void
77 */
00be9182 78 public function buildQuickForm() {
be2fb01f 79 $types = ['Participant'];
6a488035
TO
80 $profiles = CRM_Core_BAO_UFGroup::getProfiles($types, TRUE);
81
82 if (empty($profiles)) {
cfd47f69 83 CRM_Core_Session::setStatus(ts("To use Update multiple participants, you need to configure a profile containing only Participant fields (e.g. Participant Status, Participant Role, etc.). Configure a profile at 'Administer CiviCRM >> Customize >> CiviCRM Profile'."));
6a488035
TO
84 CRM_Utils_System::redirect($this->_userContext);
85 }
86
87 $ufGroupElement = $this->add('select', 'uf_group_id', ts('Select Profile'),
be2fb01f 88 [
acb1052e 89 '' => ts('- select profile -'),
be2fb01f 90 ] + $profiles, TRUE
6a488035 91 );
f212d37d 92 $this->addDefaultButtons(ts('Continue'));
6a488035
TO
93 }
94
95 /**
66f9e52b 96 * Add local and global form rules.
6a488035 97 *
6a488035
TO
98 *
99 * @return void
100 */
00be9182 101 public function addRules() {
be2fb01f 102 $this->addFormRule(['CRM_Event_Form_Task_PickProfile', 'formRule']);
6a488035
TO
103 }
104
105 /**
66f9e52b 106 * Global validation rules for the form.
6a488035 107 *
d4dd1e85
TO
108 * @param array $fields
109 * Posted values of the form.
6a488035 110 *
a6c01b45
CW
111 * @return array
112 * list of errors to be posted back to the form
6a488035 113 */
00be9182 114 public static function formRule($fields) {
6a488035
TO
115 return TRUE;
116 }
117
118 /**
66f9e52b 119 * Process the form after the input has been submitted and validated.
6a488035 120 *
6a488035 121 *
355ba699 122 * @return void
6a488035
TO
123 */
124 public function postProcess() {
125 $params = $this->exportValues();
126
127 $this->set('ufGroupId', $params['uf_group_id']);
128
129 // also reset the batch page so it gets new values from the db
130 $this->controller->resetPage('Batch');
131 }
96025800 132
6a488035 133}