Merge pull request #13270 from civicrm/5.9
[civicrm-core.git] / CRM / Contact / Form / Task / PickProfile.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2019 |
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
31 * @copyright CiviCRM LLC (c) 2004-2019
32 */
33
34 /**
35 * This class provides the functionality for Update multiple contacts
36 */
37 class CRM_Contact_Form_Task_PickProfile extends CRM_Contact_Form_Task {
38
39 /**
40 * The title of the group
41 *
42 * @var string
43 */
44 protected $_title;
45
46 /**
47 * Maximum contacts that should be allowed to update
48 */
49 protected $_maxContacts = 100;
50
51 /**
52 * Maximum profile fields that will be displayed
53 */
54 protected $_maxFields = 9;
55
56 /**
57 * Variable to store redirect path
58 */
59 protected $_userContext;
60
61 /**
62 * Build all the data structures needed to build the form.
63 */
64 public function preProcess() {
65 // initialize the task and row fields
66 parent::preProcess();
67
68 $session = CRM_Core_Session::singleton();
69 $this->_userContext = $session->readUserContext();
70
71 $validate = FALSE;
72 //validations
73 if (count($this->_contactIds) > $this->_maxContacts) {
74 CRM_Core_Session::setStatus(ts("The maximum number of contacts you can select for Update multiple contacts is %1. You have selected %2. Please select fewer contacts from your search results and try again.", array(
75 1 => $this->_maxContacts,
76 2 => count($this->_contactIds),
77 )), ts('Maximum Exceeded'), 'error');
78 $validate = TRUE;
79 }
80
81 if (CRM_Contact_BAO_Contact_Utils::checkContactType($this->_contactIds)) {
82 CRM_Core_Session::setStatus(ts("Update multiple contacts requires that all selected contacts be the same basic type (e.g. all Individuals OR all Organizations...). Please modify your selection and try again."), ts('Contact Type Mismatch'), 'error');
83 $validate = TRUE;
84 }
85
86 // than redirect
87 if ($validate) {
88 CRM_Utils_System::redirect($this->_userContext);
89 }
90 }
91
92 /**
93 * Build the form object.
94 */
95 public function buildQuickForm() {
96 CRM_Utils_System::setTitle(ts('Update multiple contacts'));
97
98 foreach ($this->_contactIds as $id) {
99 $this->_contactTypes = CRM_Contact_BAO_Contact::getContactTypes($id);
100 }
101
102 //add Contact type profiles
103 $this->_contactTypes[] = 'Contact';
104
105 $profiles = CRM_Core_BAO_UFGroup::getProfiles($this->_contactTypes);
106
107 if (empty($profiles)) {
108 $types = implode(' ' . ts('or') . ' ', $this->_contactTypes);
109 CRM_Core_Session::setStatus(ts("The contact type selected for Update multiple contacts does not have a corresponding profile. Please set up a profile for %1s and try again.", array(1 => $types)), ts('No Profile Available'), 'error');
110 CRM_Utils_System::redirect($this->_userContext);
111 }
112 $ufGroupElement = $this->add('select', 'uf_group_id', ts('Select Profile'), array('' => ts('- select profile -')) + $profiles, TRUE, array('class' => 'crm-select2 huge'));
113
114 $this->addDefaultButtons(ts('Continue'));
115 }
116
117 /**
118 * Add local and global form rules.
119 */
120 public function addRules() {
121 $this->addFormRule(array('CRM_Contact_Form_Task_PickProfile', 'formRule'));
122 }
123
124 /**
125 * Global validation rules for the form.
126 *
127 * @param array $fields
128 * Posted values of the form.
129 *
130 * @return array
131 * list of errors to be posted back to the form
132 */
133 public static function formRule($fields) {
134 if (CRM_Core_BAO_UFField::checkProfileType($fields['uf_group_id'])) {
135 $errorMsg['uf_group_id'] = "You cannot select a mixed profile for Update multiple contacts.";
136 }
137
138 if (!empty($errorMsg)) {
139 return $errorMsg;
140 }
141
142 return TRUE;
143 }
144
145 /**
146 * Process the form after the input has been submitted and validated.
147 */
148 public function postProcess() {
149 $params = $this->exportValues();
150
151 $this->set('ufGroupId', $params['uf_group_id']);
152
153 // also reset the batch page so it gets new values from the db
154 $this->controller->resetPage('Batch');
155 }
156
157 }