Merge pull request #4837 from eileenmcnaughton/CRM-15779
[civicrm-core.git] / CRM / Contact / Form / Inline / Address.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 * form helper class for address section
38 */
39 class CRM_Contact_Form_Inline_Address extends CRM_Contact_Form_Inline {
40
41 /**
42 * Location block no
43 */
44 private $_locBlockNo;
45
46 /**
47 * Do we want to parse street address.
48 */
49 public $_parseStreetAddress;
50
51 /**
52 * Store address values
53 */
54 public $_values;
55
56 /**
57 * Form action
58 */
59 public $_action;
60
61 /**
62 * Address id
63 */
64 public $_addressId;
65
66 /**
67 * Since we are using same class / code to generate multiple instances
68 * of address block, we need to generate unique form name for each,
69 * hence calling parent contructor
70 */
71 public function __construct() {
72 $locBlockNo = CRM_Utils_Request::retrieve('locno', 'Positive', CRM_Core_DAO::$_nullObject, TRUE, NULL, $_REQUEST);
73 $name = "Address_{$locBlockNo}";
74
75 parent::__construct(null, CRM_Core_Action::NONE, 'post', $name);
76 }
77
78 /**
79 * Call preprocess
80 */
81 public function preProcess() {
82 parent::preProcess();
83
84 $this->_locBlockNo = CRM_Utils_Request::retrieve('locno', 'Positive', $this, TRUE, NULL, $_REQUEST);
85 $this->assign('blockId', $this->_locBlockNo);
86
87 $addressSequence = CRM_Core_BAO_Address::addressSequence();
88 $this->assign('addressSequence', $addressSequence);
89
90 $this->_values = array();
91 $this->_addressId = CRM_Utils_Request::retrieve('aid', 'Positive', $this, FALSE, NULL, $_REQUEST);
92
93 $this->_action = CRM_Core_Action::ADD;
94 if ($this->_addressId) {
95 $params = array('id' => $this->_addressId);
96 $address = CRM_Core_BAO_Address::getValues($params, FALSE, 'id');
97 $this->_values['address'][$this->_locBlockNo] = array_pop($address);
98 $this->_action = CRM_Core_Action::UPDATE;
99 }
100 else {
101 $this->_addressId = 0;
102 }
103
104 $this->assign('action', $this->_action);
105 $this->assign('addressId', $this->_addressId);
106
107 // parse street address, CRM-5450
108 $this->_parseStreetAddress = $this->get('parseStreetAddress');
109 if (!isset($this->_parseStreetAddress)) {
110 $addressOptions = CRM_Core_BAO_Setting::valueOptions(CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME,
111 'address_options'
112 );
113 $this->_parseStreetAddress = FALSE;
114 if (!empty($addressOptions['street_address']) && !empty($addressOptions['street_address_parsing'])) {
115 $this->_parseStreetAddress = TRUE;
116 }
117 $this->set('parseStreetAddress', $this->_parseStreetAddress);
118 }
119 $this->assign('parseStreetAddress', $this->_parseStreetAddress);
120 }
121
122 /**
123 * Build the form object elements for an address object
124 *
125 * @return void
126 */
127 public function buildQuickForm() {
128 parent::buildQuickForm();
129 CRM_Contact_Form_Edit_Address::buildQuickForm($this, $this->_locBlockNo, TRUE, TRUE);
130 }
131
132 /**
133 * Set defaults for the form
134 *
135 * @return array
136 */
137 public function setDefaultValues() {
138 $defaults = $this->_values;
139
140 $config = CRM_Core_Config::singleton();
141 //set address block defaults
142 if (!empty($defaults['address'])) {
143 CRM_Contact_Form_Edit_Address::setDefaultValues($defaults, $this);
144 }
145 else {
146 // get the default location type
147 $locationType = CRM_Core_BAO_LocationType::getDefault();
148
149 if ($this->_locBlockNo == 1) {
150 $address['is_primary'] = TRUE;
151 $address['location_type_id'] = $locationType->id;
152 }
153
154 $address['country_id'] = $config->defaultContactCountry;
155 $defaults['address'][$this->_locBlockNo] = $address;
156 }
157
158 return $defaults;
159 }
160
161 /**
162 * Process the form
163 *
164 * @return void
165 */
166 public function postProcess() {
167 $params = $this->exportValues();
168
169 // Process / save address
170 $params['contact_id'] = $this->_contactId;
171 $params['updateBlankLocInfo'] = TRUE;
172
173 // process shared contact address.
174 CRM_Contact_BAO_Contact_Utils::processSharedAddress($params['address']);
175
176 if ($this->_parseStreetAddress) {
177 CRM_Contact_Form_Contact::parseAddress($params);
178 }
179
180 if ($this->_addressId > 0) {
181 $params['address'][$this->_locBlockNo]['id'] = $this->_addressId;
182 }
183
184 // save address changes
185 $address = CRM_Core_BAO_Address::create($params, TRUE);
186
187 $this->log();
188 $this->ajaxResponse['addressId'] = $address[0]->id;
189 $this->response();
190 }
191 }