Merge pull request #7661 from agileware/crm-17848
[civicrm-core.git] / CRM / Contact / Form / CustomData.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2015 |
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-2015
32 */
33
34 /**
35 * This class generates form components for custom data.
36 *
37 * It delegates the work to lower level subclasses and integrates the changes
38 * back in. It also uses a lot of functionality with the CRM API's, so any change
39 * made here could potentially affect the API etc. Be careful, be aware, use unit tests.
40 */
41 class CRM_Contact_Form_CustomData extends CRM_Core_Form {
42
43 /**
44 * The table id, used when editing/creating custom data
45 *
46 * @var int
47 */
48 protected $_tableId;
49
50 /**
51 * Entity type of the table id
52 *
53 * @var string
54 */
55 protected $_entityType;
56
57 /**
58 * Entity sub type of the table id
59 *
60 * @var string
61 */
62 protected $_entitySubType;
63
64 /**
65 * The group tree data
66 *
67 * @var array
68 */
69 //protected $_groupTree;
70
71 /**
72 * Which blocks should we show and hide.
73 *
74 * @var CRM_Core_ShowHideBlocks
75 */
76 protected $_showHide;
77
78 /**
79 * Array group titles.
80 *
81 * @var array
82 */
83 protected $_groupTitle;
84
85 /**
86 * Array group display status.
87 *
88 * @var array
89 */
90 protected $_groupCollapseDisplay;
91
92 /**
93 * Custom group id
94 *
95 * @int
96 */
97 public $_groupID;
98
99 public $_multiRecordDisplay;
100
101 public $_copyValueId;
102
103 /**
104 * Pre processing work done here.
105 *
106 * Gets session variables for table name, id of entity in table, type of entity and stores them.
107 */
108 public function preProcess() {
109 $this->_cdType = CRM_Utils_Array::value('type', $_GET);
110 $this->assign('cdType', FALSE);
111 $this->_multiRecordDisplay = CRM_Utils_Request::retrieve('multiRecordDisplay', 'String', $this);
112 if ($this->_cdType || $this->_multiRecordDisplay == 'single') {
113 if ($this->_cdType) {
114 $this->assign('cdType', TRUE);
115 }
116 // NOTE : group id is not stored in session from within CRM_Custom_Form_CustomData::preProcess func
117 // this is due to some condition inside it which restricts it from saving in session
118 // so doing this for multi record edit action
119 $entityId = CRM_Utils_Request::retrieve('entityID', 'Positive', $this);
120 if (!empty($entityId)) {
121 $subType = CRM_Contact_BAO_Contact::getContactSubType($entityId, ',');
122 }
123 CRM_Custom_Form_CustomData::preProcess($this, NULL, $subType, NULL, NULL, $entityId);
124 if ($this->_multiRecordDisplay) {
125 $this->_groupID = CRM_Utils_Request::retrieve('groupID', 'Positive', $this);
126 $this->_tableID = $this->_entityId;
127 $this->_contactType = CRM_Contact_BAO_Contact::getContactType($this->_tableID);
128 $mode = CRM_Utils_Request::retrieve('mode', 'String', $this);
129 $hasReachedMax = CRM_Core_BAO_CustomGroup::hasReachedMaxLimit($this->_groupID, $this->_tableID);
130 if ($hasReachedMax && $mode == 'add') {
131 CRM_Core_Error::statusBounce(ts('The maximum record limit is reached'));
132 }
133 $this->_copyValueId = CRM_Utils_Request::retrieve('copyValueId', 'Positive', $this);
134
135 $groupTitle = CRM_Core_BAO_CustomGroup::getTitle($this->_groupID);
136 $mode = CRM_Utils_Request::retrieve('mode', 'String', CRM_Core_DAO::$_nullObject, FALSE, NULL, 'GET');
137 $mode = ucfirst($mode);
138 CRM_Utils_System::setTitle(ts('%1 %2 Record', array(1 => $mode, 2 => $groupTitle)));
139
140 if (!empty($_POST['hidden_custom'])) {
141 $this->assign('postedInfo', TRUE);
142 }
143 }
144 return;
145 }
146 $this->_groupID = CRM_Utils_Request::retrieve('groupID', 'Positive', $this, TRUE);
147 $this->_tableID = CRM_Utils_Request::retrieve('tableId', 'Positive', $this, TRUE);
148
149 $this->_contactType = CRM_Contact_BAO_Contact::getContactType($this->_tableID);
150 $this->_contactSubType = CRM_Contact_BAO_Contact::getContactSubType($this->_tableID, ',');
151 $this->assign('contact_type', $this->_contactType);
152 $this->assign('contact_subtype', $this->_contactSubType);
153 list($displayName, $contactImage) = CRM_Contact_BAO_Contact::getDisplayAndImage($this->_tableID);
154 CRM_Utils_System::setTitle($displayName, $contactImage . ' ' . $displayName);
155
156 // when custom data is included in this page
157 if (!empty($_POST['hidden_custom'])) {
158 for ($i = 0; $i <= $_POST['hidden_custom_group_count'][$this->_groupID]; $i++) {
159 CRM_Custom_Form_CustomData::preProcess($this, NULL, $this->_contactSubType, $i, $this->_contactType, $this->_groupID);
160 CRM_Custom_Form_CustomData::buildQuickForm($this);
161 CRM_Custom_Form_CustomData::setDefaultValues($this);
162 }
163 }
164 }
165
166 /**
167 * Build the form object.
168 */
169 public function buildQuickForm() {
170 if ($this->_cdType || $this->_multiRecordDisplay == 'single') {
171 // buttons display for multi-valued fields to perform independednt actions
172 if ($this->_multiRecordDisplay) {
173 $isMultiple = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_CustomGroup',
174 $this->_groupID,
175 'is_multiple'
176 );
177 if ($isMultiple) {
178 $this->assign('multiRecordDisplay', $this->_multiRecordDisplay);
179 $saveButtonName = $this->_copyValueId ? ts('Save a Copy') : ts('Save');
180 $this->addButtons(array(
181 array(
182 'type' => 'upload',
183 'name' => $saveButtonName,
184 'isDefault' => TRUE,
185 ),
186 array(
187 'type' => 'upload',
188 'name' => ts('Save and New'),
189 'subName' => 'new',
190 ),
191 array(
192 'type' => 'cancel',
193 'name' => ts('Cancel'),
194 ),
195 )
196 );
197 }
198 }
199 return CRM_Custom_Form_CustomData::buildQuickForm($this);
200 }
201
202 //need to assign custom data type and subtype to the template
203 $this->assign('entityID', $this->_tableID);
204 $this->assign('groupID', $this->_groupID);
205
206 // make this form an upload since we dont know if the custom data injected dynamically
207 // is of type file etc
208 $this->addButtons(array(
209 array(
210 'type' => 'upload',
211 'name' => ts('Save'),
212 'isDefault' => TRUE,
213 ),
214 array(
215 'type' => 'cancel',
216 'name' => ts('Cancel'),
217 ),
218 )
219 );
220 }
221
222 /**
223 * Set the default form values.
224 *
225 *
226 * @return array
227 * the default array reference
228 */
229 public function setDefaultValues() {
230 if ($this->_cdType || $this->_multiRecordDisplay == 'single') {
231 if ($this->_copyValueId) {
232 // cached tree is fetched
233 $groupTree = &CRM_Core_BAO_CustomGroup::getTree($this->_type,
234 $this,
235 $this->_entityId,
236 $this->_groupID
237 );
238 $valueIdDefaults = array();
239 $groupTreeValueId = CRM_Core_BAO_CustomGroup::formatGroupTree($groupTree, $this->_copyValueId, $this);
240 CRM_Core_BAO_CustomGroup::setDefaults($groupTreeValueId, $valueIdDefaults, FALSE, FALSE, $this->get('action'));
241 $tableId = $groupTreeValueId[$this->_groupID]['table_id'];
242 foreach ($valueIdDefaults as $valueIdElementName => $value) {
243 // build defaults for COPY action for new record saving
244 $valueIdElementNamePieces = explode('_', $valueIdElementName);
245 $valueIdElementNamePieces[2] = "-{$this->_groupCount}";
246 $elementName = implode('_', $valueIdElementNamePieces);
247 $customDefaultValue[$elementName] = $value;
248 }
249 }
250 else {
251 $customDefaultValue = CRM_Custom_Form_CustomData::setDefaultValues($this);
252 }
253 return $customDefaultValue;
254 }
255
256 $groupTree = &CRM_Core_BAO_CustomGroup::getTree($this->_contactType,
257 $this,
258 $this->_tableID,
259 $this->_groupID,
260 $this->_contactSubType
261 );
262
263 if (empty($_POST['hidden_custom_group_count'])) {
264 // custom data building in edit mode (required to handle multi-value)
265 $groupTree = &CRM_Core_BAO_CustomGroup::getTree($this->_contactType, $this, $this->_tableID,
266 $this->_groupID, $this->_contactSubType
267 );
268 $customValueCount = CRM_Core_BAO_CustomGroup::buildCustomDataView($this, $groupTree, TRUE, $this->_groupID);
269 }
270 else {
271 $customValueCount = $_POST['hidden_custom_group_count'][$this->_groupID];
272 }
273
274 $this->assign('customValueCount', $customValueCount);
275
276 $defaults = array();
277 return $defaults;
278 }
279
280 /**
281 * Process the user submitted custom data values.
282 */
283 public function postProcess() {
284 // Get the form values and groupTree
285 $params = CRM_Utils_Request::exportValues();
286
287 CRM_Core_BAO_CustomValueTable::postProcess($params,
288 'civicrm_contact',
289 $this->_tableID,
290 $this->_entityType
291 );
292 $table = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_CustomGroup', $this->_groupID, 'table_name');
293 $cgcount = CRM_Core_BAO_CustomGroup::customGroupDataExistsForEntity($this->_tableID, $table, TRUE);
294 $cgcount += 1;
295 $buttonName = $this->controller->getButtonName();
296 if ($buttonName == $this->getButtonName('upload', 'new')) {
297 CRM_Core_Session::singleton()
298 ->pushUserContext(CRM_Utils_System::url('civicrm/contact/view/cd/edit', "reset=1&type={$this->_contactType}&groupID={$this->_groupID}&entityID={$this->_tableID}&cgcount={$cgcount}&multiRecordDisplay=single&mode=add"));
299 }
300
301 // Add entry in the log table
302 CRM_Core_BAO_Log::register($this->_tableID,
303 'civicrm_contact',
304 $this->_tableID
305 );
306
307 if (CRM_Core_Resources::isAjaxMode()) {
308 $this->ajaxResponse += CRM_Contact_Form_Inline::renderFooter($this->_tableID);
309 }
310
311 // reset the group contact cache for this group
312 CRM_Contact_BAO_GroupContactCache::remove();
313 }
314
315 }