Merge pull request #11878 from mattwire/CRM-21791_financial_batch_pseudoconstant
[civicrm-core.git] / CRM / Contact / Form / Edit / Address.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2018 |
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-2018
32 */
33
34 /**
35 * This class is used to build address block.
36 */
37 class CRM_Contact_Form_Edit_Address {
38
39 /**
40 * Build form for address input fields.
41 *
42 * @param CRM_Core_Form $form
43 * @param int $addressBlockCount
44 * The index of the address array (if multiple addresses on a page).
45 * @param bool $sharing
46 * False, if we want to skip the address sharing features.
47 * @param bool $inlineEdit
48 * True when edit used in inline edit.
49 */
50 public static function buildQuickForm(&$form, $addressBlockCount = NULL, $sharing = TRUE, $inlineEdit = FALSE) {
51 // passing this via the session is AWFUL. we need to fix this
52 if (!$addressBlockCount) {
53 $blockId = ($form->get('Address_Block_Count')) ? $form->get('Address_Block_Count') : 1;
54 }
55 else {
56 $blockId = $addressBlockCount;
57 }
58
59 $form->applyFilter('__ALL__', 'trim');
60
61 $js = array();
62 if (!$inlineEdit) {
63 $js = array('onChange' => 'checkLocation( this.id );', 'placeholder' => NULL);
64 }
65
66 //make location type required for inline edit
67 $form->addField("address[$blockId][location_type_id]", array('entity' => 'address', 'class' => 'eight', 'option_url' => NULL) + $js, $inlineEdit);
68 if (!$inlineEdit) {
69 $js = array('id' => 'Address_' . $blockId . '_IsPrimary', 'onClick' => 'singleSelect( this.id );');
70 }
71
72 $form->addField(
73 "address[$blockId][is_primary]", array(
74 'entity' => 'address',
75 'label' => ts('Primary location for this contact'),
76 'text' => ts('Primary location for this contact')) + $js);
77
78 if (!$inlineEdit) {
79 $js = array('id' => 'Address_' . $blockId . '_IsBilling', 'onClick' => 'singleSelect( this.id );');
80 }
81
82 $form->addField(
83 "address[$blockId][is_billing]", array(
84 'entity' => 'address',
85 'label' => ts('Billing location for this contact'),
86 'text' => ts('Billing location for this contact')) + $js);
87
88 // hidden element to store master address id
89 $form->addField("address[$blockId][master_id]", array('entity' => 'address', 'type' => 'hidden'));
90 $addressOptions = CRM_Core_BAO_Setting::valueOptions(CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME,
91 'address_options', TRUE, NULL, TRUE
92 );
93
94 $elements = array(
95 'address_name',
96 'street_address',
97 'supplemental_address_1',
98 'supplemental_address_2',
99 'supplemental_address_3',
100 'city',
101 'postal_code',
102 'postal_code_suffix',
103 'country_id',
104 'state_province_id',
105 'county_id',
106 'geo_code_1',
107 'geo_code_2',
108 'street_number',
109 'street_name',
110 'street_unit',
111 );
112
113 foreach ($elements as $name) {
114 //Remove id from name, to allow comparison against enabled addressOptions.
115 $nameWithoutID = strpos($name, '_id') !== FALSE ? substr($name, 0, -3) : $name;
116 // Skip fields which are not enabled in the address options.
117 if (empty($addressOptions[$nameWithoutID])) {
118 $continue = TRUE;
119 //Don't skip street parsed fields when parsing is enabled.
120 if (in_array($nameWithoutID, array(
121 'street_number',
122 'street_name',
123 'street_unit',
124 )) && !empty($addressOptions['street_address_parsing'])
125 ) {
126 $continue = FALSE;
127 }
128 if ($continue) {
129 continue;
130 }
131 }
132 if ($name == 'address_name') {
133 $name = 'name';
134 }
135
136 $params = array('entity' => 'address');
137
138 if ($name == 'postal_code_suffix') {
139 $params['label'] = ts('Suffix');
140 }
141
142 $form->addField("address[$blockId][$name]", $params);
143 }
144
145 $entityId = NULL;
146 if (!empty($form->_values['address']) && !empty($form->_values['address'][$blockId])) {
147 $entityId = $form->_values['address'][$blockId]['id'];
148 }
149
150 // CRM-11665 geocode override option
151 $geoCode = FALSE;
152 if (CRM_Utils_GeocodeProvider::getUsableClassName()) {
153 $geoCode = TRUE;
154 $form->addElement('checkbox',
155 "address[$blockId][manual_geo_code]",
156 ts('Override automatic geocoding')
157 );
158 }
159 $form->assign('geoCode', $geoCode);
160
161 // Process any address custom data -
162 $groupTree = CRM_Core_BAO_CustomGroup::getTree('Address', NULL, $entityId);
163
164 if (isset($groupTree) && is_array($groupTree)) {
165 // use simplified formatted groupTree
166 $groupTree = CRM_Core_BAO_CustomGroup::formatGroupTree($groupTree, 1, $form);
167
168 // make sure custom fields are added /w element-name in the format - 'address[$blockId][custom-X]'
169 foreach ($groupTree as $id => $group) {
170 foreach ($group['fields'] as $fldId => $field) {
171 $groupTree[$id]['fields'][$fldId]['element_custom_name'] = $field['element_name'];
172 $groupTree[$id]['fields'][$fldId]['element_name'] = "address[$blockId][{$field['element_name']}]";
173 }
174 }
175
176 $defaults = array();
177 CRM_Core_BAO_CustomGroup::setDefaults($groupTree, $defaults);
178
179 // since we change element name for address custom data, we need to format the setdefault values
180 $addressDefaults = array();
181 foreach ($defaults as $key => $val) {
182 if (empty($val)) {
183 continue;
184 }
185
186 // inorder to set correct defaults for checkbox custom data, we need to converted flat key to array
187 // this works for all types custom data
188 $keyValues = explode('[', str_replace(']', '', $key));
189 $addressDefaults[$keyValues[0]][$keyValues[1]][$keyValues[2]] = $val;
190 }
191
192 $form->setDefaults($addressDefaults);
193
194 // we setting the prefix to 'dnc_' below, so that we don't overwrite smarty's grouptree var.
195 // And we can't set it to 'address_' because we want to set it in a slightly different format.
196 CRM_Core_BAO_CustomGroup::buildQuickForm($form, $groupTree, FALSE, 'dnc_');
197
198 // during contact editing : if no address is filled
199 // required custom data must not produce 'required' form rule error
200 // more handling done in formRule func
201 CRM_Contact_Form_Edit_Address::storeRequiredCustomDataInfo($form, $groupTree);
202
203 $tplGroupTree = CRM_Core_Smarty::singleton()->get_template_vars('address_groupTree');
204 $tplGroupTree = empty($tplGroupTree) ? array() : $tplGroupTree;
205
206 $form->assign('address_groupTree', $tplGroupTree + array($blockId => $groupTree));
207 // unset the temp smarty var that got created
208 $form->assign('dnc_groupTree', NULL);
209 }
210 // address custom data processing ends ..
211
212 if ($sharing) {
213 // shared address
214 $form->addElement('checkbox', "address[$blockId][use_shared_address]", NULL, ts('Use another contact\'s address'));
215
216 // Override the default profile links to add address form
217 $profileLinks = CRM_Core_BAO_UFGroup::getCreateLinks(array(
218 'new_individual',
219 'new_organization',
220 'new_household',
221 ), 'shared_address');
222 $form->addEntityRef("address[$blockId][master_contact_id]", ts('Share With'), array('create' => $profileLinks));
223 }
224 }
225
226 /**
227 * Check for correct state / country mapping.
228 *
229 * @param array $fields
230 * @param array $files
231 * @param CRM_Core_Form $self
232 *
233 * @return array|bool
234 * if no errors
235 */
236 public static function formRule($fields, $files = array(), $self = NULL) {
237 $errors = array();
238
239 $customDataRequiredFields = array();
240 if ($self && property_exists($self, '_addressRequireOmission')) {
241 $customDataRequiredFields = explode(',', $self->_addressRequireOmission);
242 }
243
244 if (!empty($fields['address']) && is_array($fields['address'])) {
245 foreach ($fields['address'] as $instance => $addressValues) {
246
247 if (CRM_Utils_System::isNull($addressValues)) {
248 // DETACH 'required' form rule error to
249 // custom data only if address data not exists upon submission
250 if (!empty($customDataRequiredFields)) {
251 foreach ($customDataRequiredFields as $customElementName) {
252 $elementName = "address[$instance][$customElementName]";
253 if ($self->getElementError($elementName)) {
254 // set element error to none
255 $self->setElementError($elementName, NULL);
256 }
257 }
258 }
259 continue;
260 }
261
262 // DETACH 'required' form rule error to
263 // custom data if address data not exists upon submission
264 // or if master address is selected
265 if (!empty($customDataRequiredFields) && (!CRM_Core_BAO_Address::dataExists($addressValues) || !empty($addressValues['master_id']))) {
266 foreach ($customDataRequiredFields as $customElementName) {
267 $elementName = "address[$instance][$customElementName]";
268 if ($self->getElementError($elementName)) {
269 // set element error to none
270 $self->setElementError($elementName, NULL);
271 }
272 }
273 }
274
275 if (!empty($addressValues['use_shared_address']) && empty($addressValues['master_id'])) {
276 $errors["address[$instance][use_shared_address]"] = ts('Please select valid shared contact or a contact with valid address.');
277 }
278 }
279 }
280
281 return empty($errors) ? TRUE : $errors;
282 }
283
284 /**
285 * Set default values for address block.
286 *
287 * @param array $defaults
288 * Defaults associated array.
289 * @param CRM_Core_Form $form
290 * Form object.
291 */
292 public static function setDefaultValues(&$defaults, &$form) {
293 $addressValues = array();
294 if (isset($defaults['address']) && is_array($defaults['address']) &&
295 !CRM_Utils_System::isNull($defaults['address'])
296 ) {
297
298 // start of contact shared adddress defaults
299 $sharedAddresses = array();
300 $masterAddress = array();
301
302 // get contact name of shared contact names
303 $shareAddressContactNames = CRM_Contact_BAO_Contact_Utils::getAddressShareContactNames($defaults['address']);
304
305 foreach ($defaults['address'] as $key => $addressValue) {
306 if (!empty($addressValue['master_id']) && !$shareAddressContactNames[$addressValue['master_id']]['is_deleted']) {
307 $master_cid = $shareAddressContactNames[$addressValue['master_id']]['contact_id'];
308 $sharedAddresses[$key]['shared_address_display'] = array(
309 'address' => $addressValue['display'],
310 'name' => $shareAddressContactNames[$addressValue['master_id']]['name'],
311 'options' => CRM_Core_BAO_Address::getValues(array(
312 'entity_id' => $master_cid,
313 'contact_id' => $master_cid,
314 )),
315 'master_id' => $addressValue['master_id'],
316 );
317 $defaults['address'][$key]['master_contact_id'] = $master_cid;
318 }
319 else {
320 $defaults['address'][$key]['use_shared_address'] = 0;
321 }
322
323 //check if any address is shared by any other contacts
324 $masterAddress[$key] = CRM_Core_BAO_Address::checkContactSharedAddress($addressValue['id']);
325 }
326
327 $form->assign('sharedAddresses', $sharedAddresses);
328 $form->assign('masterAddress', $masterAddress);
329 // end of shared address defaults
330
331 // start of parse address functionality
332 // build street address, CRM-5450.
333 if ($form->_parseStreetAddress) {
334 $parseFields = array('street_address', 'street_number', 'street_name', 'street_unit');
335 foreach ($defaults['address'] as $cnt => & $address) {
336 $streetAddress = NULL;
337 foreach (array(
338 'street_number',
339 'street_number_suffix',
340 'street_name',
341 'street_unit',
342 ) as $fld) {
343 if (in_array($fld, array(
344 'street_name',
345 'street_unit',
346 ))) {
347 $streetAddress .= ' ';
348 }
349 // CRM-17619 - if the street number suffix begins with a number, add a space
350 $numsuffix = CRM_Utils_Array::value($fld, $address);
351 if ($fld === 'street_number_suffix' && !empty($numsuffix)) {
352 if (ctype_digit(substr($numsuffix, 0, 1))) {
353 $streetAddress .= ' ';
354 }
355 }
356 $streetAddress .= CRM_Utils_Array::value($fld, $address);
357 }
358 $streetAddress = trim($streetAddress);
359 if (!empty($streetAddress)) {
360 $address['street_address'] = $streetAddress;
361 }
362 if (isset($address['street_number'])) {
363 // CRM-17619 - if the street number suffix begins with a number, add a space
364 $thesuffix = CRM_Utils_Array::value('street_number_suffix', $address);
365 if ($thesuffix) {
366 if (ctype_digit(substr($thesuffix, 0, 1))) {
367 $address['street_number'] .= " ";
368 }
369 }
370 $address['street_number'] .= $thesuffix;
371 }
372 // build array for set default.
373 foreach ($parseFields as $field) {
374 $addressValues["{$field}_{$cnt}"] = CRM_Utils_Array::value($field, $address);
375 }
376 // don't load fields, use js to populate.
377 foreach (array('street_number', 'street_name', 'street_unit') as $f) {
378 if (isset($address[$f])) {
379 unset($address[$f]);
380 }
381 }
382 }
383 $form->assign('allAddressFieldValues', json_encode($addressValues));
384
385 //hack to handle show/hide address fields.
386 $parsedAddress = array();
387 if ($form->_contactId && !empty($_POST['address']) && is_array($_POST['address'])
388 ) {
389 foreach ($_POST['address'] as $cnt => $values) {
390 $showField = 'streetAddress';
391 foreach (array('street_number', 'street_name', 'street_unit') as $fld) {
392 if (!empty($values[$fld])) {
393 $showField = 'addressElements';
394 break;
395 }
396 }
397 $parsedAddress[$cnt] = $showField;
398 }
399 }
400 $form->assign('showHideAddressFields', $parsedAddress);
401 $form->assign('loadShowHideAddressFields', empty($parsedAddress) ? FALSE : TRUE);
402 }
403 // end of parse address functionality
404 }
405 }
406
407 /**
408 * Store required custom data info.
409 *
410 * @param CRM_Core_Form $form
411 * @param array $groupTree
412 */
413 public static function storeRequiredCustomDataInfo(&$form, $groupTree) {
414 if (in_array(CRM_Utils_System::getClassName($form), array('CRM_Contact_Form_Contact', 'CRM_Contact_Form_Inline_Address'))) {
415 $requireOmission = NULL;
416 foreach ($groupTree as $csId => $csVal) {
417 // only process Address entity fields
418 if ($csVal['extends'] != 'Address') {
419 continue;
420 }
421
422 foreach ($csVal['fields'] as $cdId => $cdVal) {
423 if ($cdVal['is_required']) {
424 $elementName = $cdVal['element_name'];
425 if (in_array($elementName, $form->_required)) {
426 // store the omitted rule for a element, to be used later on
427 $requireOmission .= $cdVal['element_custom_name'] . ',';
428 }
429 }
430 }
431 }
432
433 $form->_addressRequireOmission = rtrim($requireOmission, ',');
434 }
435 }
436
437 }