INFRA-132 - CRM/Member - phpcbf
[civicrm-core.git] / CRM / Member / Form / Task / Batch.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
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-2014
32 * $Id$
33 *
34 */
35
36 /**
37 * This class provides the functionality for batch profile update for members
38 */
39 class CRM_Member_Form_Task_Batch extends CRM_Member_Form_Task {
40
41 /**
42 * The title of the group
43 *
44 * @var string
45 */
46 protected $_title;
47
48 /**
49 * Maximum profile fields that will be displayed
50 *
51 */
52 protected $_maxFields = 9;
53
54 /**
55 * Variable to store redirect path
56 *
57 */
58 protected $_userContext;
59
60 /**
61 * Build all the data structures needed to build the form
62 *
63 * @return void
64 */
65 public function preProcess() {
66 /*
67 * initialize the task and row fields
68 */
69 parent::preProcess();
70
71 //get the contact read only fields to display.
72 $readOnlyFields = array_merge(array('sort_name' => ts('Name')),
73 CRM_Core_BAO_Setting::valueOptions(CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME,
74 'contact_autocomplete_options',
75 TRUE, NULL, FALSE, 'name', TRUE
76 )
77 );
78 //get the read only field data.
79 $returnProperties = array_fill_keys(array_keys($readOnlyFields), 1);
80 $contactDetails = CRM_Contact_BAO_Contact_Utils::contactDetails($this->_memberIds,
81 'CiviMember', $returnProperties
82 );
83 $this->assign('contactDetails', $contactDetails);
84 $this->assign('readOnlyFields', $readOnlyFields);
85 }
86
87 /**
88 * Build the form object
89 *
90 *
91 * @return void
92 */
93 public function buildQuickForm() {
94 $ufGroupId = $this->get('ufGroupId');
95
96 if (!$ufGroupId) {
97 CRM_Core_Error::fatal('ufGroupId is missing');
98 }
99 $this->_title = ts('Batch Update for Members') . ' - ' . CRM_Core_BAO_UFGroup::getTitle($ufGroupId);
100 CRM_Utils_System::setTitle($this->_title);
101
102 $this->addDefaultButtons(ts('Save'));
103 $this->_fields = array();
104 $this->_fields = CRM_Core_BAO_UFGroup::getFields($ufGroupId, FALSE, CRM_Core_Action::VIEW);
105
106 // remove file type field and then limit fields
107 $suppressFields = FALSE;
108 $removehtmlTypes = array('File', 'Autocomplete-Select');
109 foreach ($this->_fields as $name => $field) {
110 if ($cfID = CRM_Core_BAO_CustomField::getKeyID($name) &&
111 in_array($this->_fields[$name]['html_type'], $removehtmlTypes)
112 ) {
113 $suppressFields = TRUE;
114 unset($this->_fields[$name]);
115 }
116
117 //fix to reduce size as we are using this field in grid
118 if (is_array($field['attributes']) && $this->_fields[$name]['attributes']['size'] > 19) {
119 //shrink class to "form-text-medium"
120 $this->_fields[$name]['attributes']['size'] = 19;
121 }
122 }
123
124 $this->_fields = array_slice($this->_fields, 0, $this->_maxFields);
125
126 $this->addButtons(array(
127 array(
128 'type' => 'submit',
129 'name' => ts('Update Members(s)'),
130 'isDefault' => TRUE,
131 ),
132 array(
133 'type' => 'cancel',
134 'name' => ts('Cancel'),
135 ),
136 )
137 );
138
139 $this->assign('profileTitle', $this->_title);
140 $this->assign('componentIds', $this->_memberIds);
141 $fileFieldExists = FALSE;
142
143 //load all campaigns.
144 if (array_key_exists('member_campaign_id', $this->_fields)) {
145 $this->_componentCampaigns = array();
146 CRM_Core_PseudoConstant::populate($this->_componentCampaigns,
147 'CRM_Member_DAO_Membership',
148 TRUE, 'campaign_id', 'id',
149 ' id IN (' . implode(' , ', array_values($this->_memberIds)) . ' ) '
150 );
151 }
152
153 $customFields = CRM_Core_BAO_CustomField::getFields('Membership');
154 foreach ($this->_memberIds as $memberId) {
155 $typeId = CRM_Core_DAO::getFieldValue("CRM_Member_DAO_Membership", $memberId, 'membership_type_id');
156 foreach ($this->_fields as $name => $field) {
157 if ($customFieldID = CRM_Core_BAO_CustomField::getKeyID($name)) {
158 $customValue = CRM_Utils_Array::value($customFieldID, $customFields);
159 if (!empty($customValue['extends_entity_column_value'])) {
160 $entityColumnValue = explode(CRM_Core_DAO::VALUE_SEPARATOR,
161 $customValue['extends_entity_column_value']
162 );
163 }
164 if ((CRM_Utils_Array::value($typeId, $entityColumnValue)) ||
165 CRM_Utils_System::isNull($entityColumnValue[$typeId])
166 ) {
167 CRM_Core_BAO_UFGroup::buildProfile($this, $field, NULL, $memberId);
168 }
169 }
170 else {
171 // handle non custom fields
172 CRM_Core_BAO_UFGroup::buildProfile($this, $field, NULL, $memberId);
173 }
174 }
175 }
176
177 $this->assign('fields', $this->_fields);
178
179 // don't set the status message when form is submitted.
180 $buttonName = $this->controller->getButtonName('submit');
181
182 if ($suppressFields && $buttonName != '_qf_Batch_next') {
183 CRM_Core_Session::setStatus(ts("File or Autocomplete-Select type field(s) in the selected profile are not supported for Batch Update."), ts('Unsupported Field Type'), 'error');
184 }
185
186 $this->addDefaultButtons(ts('Update Memberships'));
187 }
188
189 /**
190 * Set default values for the form.
191 *
192 *
193 * @return void
194 */
195 public function setDefaultValues() {
196 if (empty($this->_fields)) {
197 return;
198 }
199
200 $defaults = array();
201 foreach ($this->_memberIds as $memberId) {
202 $details[$memberId] = array();
203 CRM_Core_BAO_UFGroup::setProfileDefaults(NULL, $this->_fields, $defaults, FALSE, $memberId, 'Membership');
204 }
205
206 return $defaults;
207 }
208
209 /**
210 * Process the form after the input has been submitted and validated
211 *
212 *
213 * @return void
214 */
215 public function postProcess() {
216 $params = $this->exportValues();
217 $dates = array(
218 'join_date',
219 'membership_start_date',
220 'membership_end_date',
221 );
222 if (isset($params['field'])) {
223 $customFields = array();
224 foreach ($params['field'] as $key => $value) {
225 $ids['membership'] = $key;
226 if (!empty($value['membership_source'])) {
227 $value['source'] = $value['membership_source'];
228 }
229
230 if (!empty($value['membership_type'])) {
231 $membershipTypeId = $value['membership_type_id'] = $value['membership_type'][1];
232 }
233
234 unset($value['membership_source']);
235 unset($value['membership_type']);
236
237 //Get the membership status
238 $value['status_id'] = (CRM_Utils_Array::value('membership_status', $value)) ? $value['membership_status'] : CRM_Core_DAO::getFieldValue('CRM_Member_DAO_Membership', $key, 'status_id');
239 unset($value['membership_status']);
240 foreach ($dates as $val) {
241 if (isset($value[$val])) {
242 $value[$val] = CRM_Utils_Date::processDate($value[$val]);
243 }
244 }
245 if (empty($customFields)) {
246 if (empty($value['membership_type_id'])) {
247 $membershipTypeId = CRM_Core_DAO::getFieldValue('CRM_Member_DAO_Membership', $key, 'membership_type_id');
248 }
249
250 // membership type custom data
251 $customFields = CRM_Core_BAO_CustomField::getFields('Membership', FALSE, FALSE, $membershipTypeId);
252
253 $customFields = CRM_Utils_Array::crmArrayMerge($customFields,
254 CRM_Core_BAO_CustomField::getFields('Membership',
255 FALSE, FALSE, NULL, NULL, TRUE
256 )
257 );
258 }
259 //check for custom data
260 $value['custom'] = CRM_Core_BAO_CustomField::postProcess($params['field'][$key],
261 $customFields,
262 $key,
263 'Membership',
264 $membershipTypeId
265 );
266
267 $membership = CRM_Member_BAO_Membership::add($value, $ids);
268
269 // add custom field values
270 if (!empty($value['custom']) &&
271 is_array($value['custom'])
272 ) {
273 CRM_Core_BAO_CustomValueTable::store($value['custom'], 'civicrm_membership', $membership->id);
274 }
275 }
276
277 CRM_Core_Session::setStatus(ts("Your updates have been saved."), ts('Saved'), 'success');
278 }
279 else {
280 CRM_Core_Session::setStatus(ts("No updates have been saved."), ts('Not Saved'), 'alert');
281 }
282 }
283 }