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