3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
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. |
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. |
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 +--------------------------------------------------------------------+
31 * @copyright CiviCRM LLC (c) 2004-2014
37 * This class is used to build address block
39 class CRM_Contact_Form_Edit_Address
{
42 * Build form for address input fields
44 * @param CRM_Core_Form $form
45 * @param int $addressBlockCount - the index of the address array (if multiple addresses on a page)
46 * @param boolean $sharing - false, if we want to skip the address sharing features
47 * @param boolean $inlineEdit true when edit used in inline edit
54 static function buildQuickForm(&$form, $addressBlockCount = NULL, $sharing = TRUE, $inlineEdit = FALSE) {
55 // passing this via the session is AWFUL. we need to fix this
56 if (!$addressBlockCount) {
57 $blockId = ($form->get('Address_Block_Count')) ?
$form->get('Address_Block_Count') : 1;
60 $blockId = $addressBlockCount;
63 $config = CRM_Core_Config
::singleton();
64 $countryDefault = $config->defaultContactCountry
;
66 $form->applyFilter('__ALL__', 'trim');
70 $js = array('onChange' => 'checkLocation( this.id );', 'placeholder' => NULL);
73 //make location type required for inline edit
74 $form->addSelect("address[$blockId][location_type_id]", array('entity' => 'address', 'class' => 'eight') +
$js, $inlineEdit);
77 $js = array('id' => 'Address_' . $blockId . '_IsPrimary', 'onClick' => 'singleSelect( this.id );');
82 "address[$blockId][is_primary]",
83 ts('Primary location for this contact'),
84 ts('Primary location for this contact'),
89 $js = array('id' => 'Address_' . $blockId . '_IsBilling', 'onClick' => 'singleSelect( this.id );');
94 "address[$blockId][is_billing]",
95 ts('Billing location for this contact'),
96 ts('Billing location for this contact'),
100 // hidden element to store master address id
101 $form->addElement('hidden', "address[$blockId][master_id]");
103 $addressOptions = CRM_Core_BAO_Setting
::valueOptions(CRM_Core_BAO_Setting
::SYSTEM_PREFERENCES_NAME
,
104 'address_options', TRUE, NULL, TRUE
106 $attributes = CRM_Core_DAO
::getAttribute('CRM_Core_DAO_Address');
109 'address_name' => array(ts('Address Name'), $attributes['address_name'], NULL),
110 'street_address' => array(ts('Street Address'), $attributes['street_address'], NULL),
111 'supplemental_address_1' => array(ts('Supplemental Address 1'), $attributes['supplemental_address_1'], NULL),
112 'supplemental_address_2' => array(ts('Supplemental Address 2'), $attributes['supplemental_address_2'], NULL),
113 'city' => array(ts('City'), $attributes['city'], NULL),
114 'postal_code' => array(ts('Zip / Postal Code'), array_merge($attributes['postal_code'], array('class' => 'crm_postal_code')), NULL),
115 'postal_code_suffix' => array(ts('Postal Code Suffix'), array('size' => 4, 'maxlength' => 12, 'class' => 'crm_postal_code_suffix'), NULL),
116 'country_id' => array(ts('Country'), $attributes['country_id'], 'country'),
117 'state_province_id' => array(ts('State/Province'), $attributes['state_province_id'], NULL),
118 'county_id' => array(ts('County'), $attributes['county_id'], NULL),
119 'geo_code_1' => array(ts('Latitude'), array('size' => 9, 'maxlength' => 11), NULL),
120 'geo_code_2' => array(ts('Longitude'), array('size' => 9, 'maxlength' => 11), NULL),
121 'street_number' => array(ts('Street Number'), $attributes['street_number'], NULL),
122 'street_name' => array(ts('Street Name'), $attributes['street_name'], NULL),
123 'street_unit' => array(ts('Apt/Unit/Suite'), $attributes['street_unit'], NULL),
126 foreach ($elements as $name => $v) {
127 list($title, $attributes, $select) = $v;
129 $nameWithoutID = strpos($name, '_id') !== FALSE ?
substr($name, 0, -3) : $name;
130 if (empty($addressOptions[$nameWithoutID])) {
132 if (in_array($nameWithoutID, array(
133 'street_number', 'street_name', 'street_unit')) && !empty($addressOptions['street_address_parsing'])) {
141 //build normal select if country is not present in address block
142 if ($name == 'state_province_id' && !$addressOptions['country']) {
143 $select = 'stateProvince';
147 if ($name == 'state_province_id' ||
$name == 'county_id') {
148 $form->addChainSelect("address[$blockId][$name]");
151 if ($name == 'address_name') {
155 $form->addElement('text',
156 "address[$blockId][$name]",
163 $form->addElement('select',
164 "address[$blockId][$name]",
166 array('' => ts('- select -')) + CRM_Core_PseudoConstant
::$select()
172 if (!empty($form->_values
['address']) && !empty($form->_values
['address'][$blockId])) {
173 $entityId = $form->_values
['address'][$blockId]['id'];
176 // CRM-11665 geocode override option
178 if (!empty($config->geocodeMethod
)) {
180 $form->addElement('checkbox',
181 "address[$blockId][manual_geo_code]",
182 ts('Override automatic geocoding')
185 $form->assign('geoCode', $geoCode);
187 // Process any address custom data -
188 $groupTree = CRM_Core_BAO_CustomGroup
::getTree('Address',
193 if (isset($groupTree) && is_array($groupTree)) {
194 // use simplified formatted groupTree
195 $groupTree = CRM_Core_BAO_CustomGroup
::formatGroupTree($groupTree, 1, $form);
197 // make sure custom fields are added /w element-name in the format - 'address[$blockId][custom-X]'
198 foreach ($groupTree as $id => $group) {
199 foreach ($group['fields'] as $fldId => $field) {
200 $groupTree[$id]['fields'][$fldId]['element_custom_name'] = $field['element_name'];
201 $groupTree[$id]['fields'][$fldId]['element_name'] = "address[$blockId][{$field['element_name']}]";
206 CRM_Core_BAO_CustomGroup
::setDefaults($groupTree, $defaults);
208 // since we change element name for address custom data, we need to format the setdefault values
209 $addressDefaults = array();
210 foreach ($defaults as $key => $val) {
211 if ( empty( $val ) ) {
215 // inorder to set correct defaults for checkbox custom data, we need to converted flat key to array
216 // this works for all types custom data
217 $keyValues = explode('[', str_replace(']', '', $key));
218 $addressDefaults[$keyValues[0]][$keyValues[1]][$keyValues[2]] = $val;
221 $form->setDefaults($addressDefaults);
223 // we setting the prefix to 'dnc_' below, so that we don't overwrite smarty's grouptree var.
224 // And we can't set it to 'address_' because we want to set it in a slightly different format.
225 CRM_Core_BAO_CustomGroup
::buildQuickForm($form, $groupTree, FALSE, 'dnc_');
227 // during contact editing : if no address is filled
228 // required custom data must not produce 'required' form rule error
229 // more handling done in formRule func
231 CRM_Contact_Form_Edit_Address
::storeRequiredCustomDataInfo($form, $groupTree);
234 $template = CRM_Core_Smarty
::singleton();
235 $tplGroupTree = $template->get_template_vars('address_groupTree');
236 $tplGroupTree = empty($tplGroupTree) ?
array(
239 $form->assign('address_groupTree', $tplGroupTree +
array($blockId => $groupTree));
240 // unset the temp smarty var that got created
241 $form->assign('dnc_groupTree', NULL);
243 // address custom data processing ends ..
247 $form->addElement('checkbox', "address[$blockId][use_shared_address]", NULL, ts('Use another contact\'s address'));
249 // Override the default profile links to add address form
250 $profileLinks = CRM_Core_BAO_UFGroup
::getCreateLinks(array('new_individual', 'new_organization', 'new_household'), 'shared_address');
251 $form->addEntityRef("address[$blockId][master_contact_id]", ts('Share With'), array('create' => $profileLinks));
256 * Check for correct state / country mapping.
262 * @return array|bool if no errors
267 static function formRule($fields, $files, $self) {
270 $customDataRequiredFields = array();
271 if ($self && property_exists($self, '_addressRequireOmission')) {
272 $customDataRequiredFields = explode(',', $self->_addressRequireOmission
);
275 if (!empty($fields['address']) && is_array($fields['address'])) {
276 foreach ($fields['address'] as $instance => $addressValues) {
278 if (CRM_Utils_System
::isNull($addressValues)) {
279 // DETACH 'required' form rule error to
280 // custom data only if address data not exists upon submission
281 if (!empty($customDataRequiredFields)) {
282 foreach($customDataRequiredFields as $customElementName) {
283 $elementName = "address[$instance][$customElementName]";
284 if ($self->getElementError($elementName)) {
285 // set element error to none
286 $self->setElementError($elementName, NULL);
293 // DETACH 'required' form rule error to
294 // custom data only if address data not exists upon submission
295 if (!empty($customDataRequiredFields) && !CRM_Core_BAO_Address
::dataExists($addressValues)) {
296 foreach($customDataRequiredFields as $customElementName) {
297 $elementName = "address[$instance][$customElementName]";
298 if ($self->getElementError($elementName)) {
299 // set element error to none
300 $self->setElementError($elementName, NULL);
305 if (!empty($addressValues['use_shared_address']) && empty($addressValues['master_id'])) {
306 $errors["address[$instance][use_shared_address]"] = ts('Please select valid shared contact or a contact with valid address.');
311 return empty($errors) ?
TRUE : $errors;
315 * Set default values for address block
317 * @param array $defaults defaults associated array
318 * @param CRM_Core_Form $form form object
323 static function setDefaultValues( &$defaults, &$form ) {
324 $addressValues = array();
325 if (isset($defaults['address']) && is_array($defaults['address']) &&
326 !CRM_Utils_System
::isNull($defaults['address'])
329 // start of contact shared adddress defaults
330 $sharedAddresses = array();
331 $masterAddress = array();
333 // get contact name of shared contact names
334 $shareAddressContactNames = CRM_Contact_BAO_Contact_Utils
::getAddressShareContactNames($defaults['address']);
336 foreach ($defaults['address'] as $key => $addressValue) {
337 if (!empty($addressValue['master_id']) && !$shareAddressContactNames[$addressValue['master_id']]['is_deleted']) {
338 $master_cid = $shareAddressContactNames[$addressValue['master_id']]['contact_id'];
339 $sharedAddresses[$key]['shared_address_display'] = array(
340 'address' => $addressValue['display'],
341 'name' => $shareAddressContactNames[$addressValue['master_id']]['name'],
342 'options' => CRM_Core_BAO_Address
::getValues(array('entity_id' => $master_cid, 'contact_id' => $master_cid)),
343 'master_id' => $addressValue['master_id'],
345 $defaults['address'][$key]['master_contact_id'] = $master_cid;
348 $defaults['address'][$key]['use_shared_address'] = 0;
351 //check if any address is shared by any other contacts
352 $masterAddress[$key] = CRM_Core_BAO_Address
::checkContactSharedAddress($addressValue['id']);
355 $form->assign('sharedAddresses', $sharedAddresses);
356 $form->assign('masterAddress', $masterAddress);
357 // end of shared address defaults
359 // start of parse address functionality
360 // build street address, CRM-5450.
361 if ($form->_parseStreetAddress
) {
362 $parseFields = array('street_address', 'street_number', 'street_name', 'street_unit');
363 foreach ($defaults['address'] as $cnt => & $address) {
364 $streetAddress = NULL;
366 'street_number', 'street_number_suffix', 'street_name', 'street_unit') as $fld) {
367 if (in_array($fld, array(
368 'street_name', 'street_unit'))) {
369 $streetAddress .= ' ';
371 $streetAddress .= CRM_Utils_Array
::value($fld, $address);
373 $streetAddress = trim($streetAddress);
374 if (!empty($streetAddress)) {
375 $address['street_address'] = $streetAddress;
377 if (isset($address['street_number'])) {
378 $address['street_number'] .= CRM_Utils_Array
::value('street_number_suffix', $address);
381 // build array for set default.
382 foreach ($parseFields as $field) {
383 $addressValues["{$field}_{$cnt}"] = CRM_Utils_Array
::value($field, $address);
385 // don't load fields, use js to populate.
386 foreach (array('street_number', 'street_name', 'street_unit') as $f) {
387 if (isset($address[$f])) {
392 $form->assign('allAddressFieldValues', json_encode($addressValues));
394 //hack to handle show/hide address fields.
395 $parsedAddress = array();
396 if ($form->_contactId
&& !empty($_POST['address']) && is_array($_POST['address'])
398 foreach ($_POST['address'] as $cnt => $values) {
399 $showField = 'streetAddress';
400 foreach (array('street_number', 'street_name', 'street_unit') as $fld) {
401 if (!empty($values[$fld])) {
402 $showField = 'addressElements';
406 $parsedAddress[$cnt] = $showField;
409 $form->assign('showHideAddressFields', $parsedAddress);
410 $form->assign('loadShowHideAddressFields', empty($parsedAddress) ?
FALSE : TRUE);
412 // end of parse address functionality
418 * @param CRM_Core_Form $form
421 static function storeRequiredCustomDataInfo(&$form, $groupTree) {
422 if (CRM_Utils_System
::getClassName($form) == 'CRM_Contact_Form_Contact') {
423 $requireOmission = NULL;
424 foreach ($groupTree as $csId => $csVal) {
425 // only process Address entity fields
426 if ($csVal['extends'] != 'Address') {
430 foreach ($csVal['fields'] as $cdId => $cdVal) {
431 if ($cdVal['is_required']) {
432 $elementName = $cdVal['element_name'];
433 if (in_array($elementName, $form->_required
)) {
434 // store the omitted rule for a element, to be used later on
435 $requireOmission .= $cdVal['element_custom_name'] . ',';
441 $form->_addressRequireOmission
= rtrim($requireOmission, ',');