Merge pull request #4450 from totten/4.5-test-fixes
[civicrm-core.git] / CRM / Core / BAO / CustomField.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
06b69b18 4 | CiviCRM version 4.5 |
6a488035 5 +--------------------------------------------------------------------+
06b69b18 6 | Copyright CiviCRM LLC (c) 2004-2014 |
6a488035
TO
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
06b69b18 31 * @copyright CiviCRM LLC (c) 2004-2014
6a488035
TO
32 * $Id$
33 *
34 */
35
36/**
37 * Business objects for managing custom data fields.
38 *
39 */
40class CRM_Core_BAO_CustomField extends CRM_Core_DAO_CustomField {
41
42 /**
43 * Array for valid combinations of data_type & descriptions
44 *
45 * @var array
46 * @static
47 */
48 public static $_dataType = NULL;
49
50 /**
51 * Array for valid combinations of data_type & html_type
52 *
53 * @var array
54 * @static
55 */
56 public static $_dataToHtml = NULL;
57
58 /**
59 * Array to hold (formatted) fields for import
60 *
61 * @var array
62 * @static
63 */
64 public static $_importFields = NULL;
65
66 /**
67 * Build and retrieve the list of data types and descriptions
68 *
69 * @param NULL
70 *
71 * @return array Data type => Description
72 * @access public
73 * @static
74 */
75 static function &dataType() {
76 if (!(self::$_dataType)) {
77 self::$_dataType = array(
78 'String' => ts('Alphanumeric'),
79 'Int' => ts('Integer'),
80 'Float' => ts('Number'),
81 'Money' => ts('Money'),
82 'Memo' => ts('Note'),
83 'Date' => ts('Date'),
84 'Boolean' => ts('Yes or No'),
85 'StateProvince' => ts('State/Province'),
86 'Country' => ts('Country'),
87 'File' => ts('File'),
88 'Link' => ts('Link'),
89 'ContactReference' => ts('Contact Reference'),
90 );
91 }
92 return self::$_dataType;
93 }
94
b5c2afd0
EM
95 /**
96 * @return array
97 */
6a488035
TO
98 static function dataToHtml() {
99 if (!self::$_dataToHtml) {
100 self::$_dataToHtml = array(
101 array(
102 'Text' => 'Text', 'Select' => 'Select',
103 'Radio' => 'Radio', 'CheckBox' => 'CheckBox',
104 'Multi-Select' => 'Multi-Select',
105 'AdvMulti-Select' => 'AdvMulti-Select',
106 'Autocomplete-Select' => 'Autocomplete-Select',
107 ),
108 array('Text' => 'Text', 'Select' => 'Select', 'Radio' => 'Radio'),
109 array('Text' => 'Text', 'Select' => 'Select', 'Radio' => 'Radio'),
110 array('Text' => 'Text', 'Select' => 'Select', 'Radio' => 'Radio'),
111 array('TextArea' => 'TextArea', 'RichTextEditor' => 'RichTextEditor'),
112 array('Date' => 'Select Date'),
113 array('Radio' => 'Radio'),
114 array('StateProvince' => 'Select State/Province', 'Multi-Select' => 'Multi-Select State/Province'),
115 array('Country' => 'Select Country', 'Multi-Select' => 'Multi-Select Country'),
116 array('File' => 'File'),
117 array('Link' => 'Link'),
118 array('ContactReference' => 'Autocomplete-Select'),
119 );
120 }
121 return self::$_dataToHtml;
122 }
123
124 /**
125 * takes an associative array and creates a custom field object
126 *
127 * This function is invoked from within the web form layer and also from the api layer
128 *
129 * @param array $params (reference) an assoc array of name/value pairs
130 *
0b1bae4a 131 * @return CRM_Core_DAO_CustomField object
6a488035
TO
132 * @access public
133 * @static
134 */
135 static function create(&$params) {
79f68e44
TO
136 $origParams = array_merge(array(), $params);
137
f3f0709d 138 if (!isset($params['id'])) {
139 if (!isset($params['column_name'])) {
140 // if add mode & column_name not present, calculate it.
141 $params['column_name'] = strtolower(CRM_Utils_String::munge($params['label'], '_', 32));
142 }
143 if (!isset($params['name'])) {
144 $params['name'] = CRM_Utils_String::munge($params['label'], '_', 64);
145 }
6a488035 146 }
f3f0709d 147 else {
148 $params['column_name'] = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_CustomField',
6a488035
TO
149 $params['id'],
150 'column_name'
151 );
152 }
8001040d 153 $columnName = $params['column_name'];
6a488035
TO
154
155 $indexExist = FALSE;
156 //as during create if field is_searchable we had created index.
a7488080 157 if (!empty($params['id'])) {
6a488035
TO
158 $indexExist = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_CustomField', $params['id'], 'is_searchable');
159 }
160
0d973850 161 switch (CRM_Utils_Array::value('html_type', $params)){
162 case 'Select Date':
163 if(empty($params['date_format'])){
164 $config = CRM_Core_Config::singleton();
165 $params['date_format'] = $config->dateInputFormat;
6a488035 166 }
0d973850 167 break;
168 case 'CheckBox':
169 case 'AdvMulti-Select':
170 case 'Multi-Select':
171 if (isset($params['default_checkbox_option'])) {
172 $tempArray = array_keys($params['default_checkbox_option']);
173 $defaultArray = array();
174 foreach ($tempArray as $k => $v) {
175 if ($params['option_value'][$v]) {
176 $defaultArray[] = $params['option_value'][$v];
177 }
178 }
6a488035 179
0d973850 180 if (!empty($defaultArray)) {
181 // also add the seperator before and after the value per new conventio (CRM-1604)
182 $params['default_value'] = CRM_Core_DAO::VALUE_SEPARATOR . implode(CRM_Core_DAO::VALUE_SEPARATOR, $defaultArray) . CRM_Core_DAO::VALUE_SEPARATOR;
183 }
184 }
185 else {
a7488080 186 if (!empty($params['default_option']) && isset($params['option_value'][$params['default_option']])
0d973850 187 ) {
188 $params['default_value'] = $params['option_value'][$params['default_option']];
189 }
190 }
191 break;
6a488035 192 }
0d973850 193
6a488035
TO
194 $transaction = new CRM_Core_Transaction();
195 // create any option group & values if required
196 if ($params['html_type'] != 'Text' &&
197 in_array($params['data_type'], array(
b958933f 198 'String', 'Int', 'Float', 'Money'))
6a488035
TO
199 ) {
200
201 $tableName = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_CustomGroup',
202 $params['custom_group_id'],
203 'table_name'
204 );
205
206
207 if ($params['option_type'] == 1) {
208 // first create an option group for this custom group
209 $optionGroup = new CRM_Core_DAO_OptionGroup();
8b3b9a2e 210 $optionGroup->name = "{$columnName}_" . date('YmdHis');
6a488035
TO
211 $optionGroup->title = $params['label'];
212 $optionGroup->is_active = 1;
213 $optionGroup->save();
214 $params['option_group_id'] = $optionGroup->id;
b958933f 215 if(!empty($params['option_value']) && is_array($params['option_value'])){
216 foreach ($params['option_value'] as $k => $v) {
217 if (strlen(trim($v))) {
218 $optionValue = new CRM_Core_DAO_OptionValue();
219 $optionValue->option_group_id = $optionGroup->id;
220 $optionValue->label = $params['option_label'][$k];
221 $optionValue->name = CRM_Utils_String::titleToVar($params['option_label'][$k]);
222 switch ($params['data_type']) {
223 case 'Money':
224 $optionValue->value = CRM_Utils_Rule::cleanMoney($v);
225 break;
226
227 case 'Int':
228 $optionValue->value = intval($v);
229 break;
230
231 case 'Float':
232 $optionValue->value = floatval($v);
233 break;
234
235 default:
236 $optionValue->value = trim($v);
237 }
6a488035 238
b958933f 239 $optionValue->weight = $params['option_weight'][$k];
240 $optionValue->is_active = CRM_Utils_Array::value($k, $params['option_status'], FALSE);
241 $optionValue->save();
6a488035 242 }
6a488035
TO
243 }
244 }
245 }
246 }
247
248 // check for orphan option groups
a7488080
CW
249 if (!empty($params['option_group_id'])) {
250 if (!empty($params['id'])) {
6a488035
TO
251 self::fixOptionGroups($params['id'], $params['option_group_id']);
252 }
253
254 // if we dont have a default value
255 // retrive it from one of the other custom fields which use this option group
a7488080 256 if (empty($params['default_value'])) {
6a488035
TO
257 //don't insert only value separator as default value, CRM-4579
258 $defaultValue = self::getOptionGroupDefault($params['option_group_id'],
259 $params['html_type']
260 );
261
262 if (!CRM_Utils_System::isNull(explode(CRM_Core_DAO::VALUE_SEPARATOR,
263 $defaultValue
264 ))) {
265 $params['default_value'] = $defaultValue;
266 }
267 }
268 }
269
270 // since we need to save option group id :)
271 if (!isset($params['attributes']) && strtolower($params['html_type']) == 'textarea') {
272 $params['attributes'] = 'rows=4, cols=60';
273 }
274
275 $customField = new CRM_Core_DAO_CustomField();
276 $customField->copyValues($params);
277 $customField->is_required = CRM_Utils_Array::value('is_required', $params, FALSE);
278 $customField->is_searchable = CRM_Utils_Array::value('is_searchable', $params, FALSE);
e41f4660 279 $customField->in_selector = CRM_Utils_Array::value('in_selector', $params, FALSE);
6a488035
TO
280 $customField->is_search_range = CRM_Utils_Array::value('is_search_range', $params, FALSE);
281 $customField->is_active = CRM_Utils_Array::value('is_active', $params, FALSE);
282 $customField->is_view = CRM_Utils_Array::value('is_view', $params, FALSE);
283 $customField->save();
284
285 // make sure all values are present in the object for further processing
286 $customField->find(TRUE);
287
a81b736d 288 $triggerRebuild = CRM_Utils_Array::value('triggerRebuild', $params, TRUE);
6a488035 289 //create/drop the index when we toggle the is_searchable flag
a7488080 290 if (!empty($params['id'])) {
a81b736d 291 self::createField($customField, 'modify', $indexExist, $triggerRebuild);
6a488035
TO
292 }
293 else {
79f68e44
TO
294 if (!isset($origParams['column_name'])) {
295 $columnName .= "_{$customField->id}";
296 $params['column_name'] = $columnName;
297 }
8b3b9a2e 298 $customField->column_name = $columnName;
6a488035
TO
299 $customField->save();
300 // make sure all values are present in the object
301 $customField->find(TRUE);
302
a81b736d
JM
303 $indexExist = FALSE;
304 self::createField($customField, 'add', $indexExist, $triggerRebuild);
6a488035
TO
305 }
306
307 // complete transaction
308 $transaction->commit();
309
310 CRM_Utils_System::flushCache();
311
312 return $customField;
313 }
314
315 /**
316 * Takes a bunch of params that are needed to match certain criteria and
317 * retrieves the relevant objects. Typically the valid params are only
318 * contact_id. We'll tweak this function to be more full featured over a period
319 * of time. This is the inverse function of create. It also stores all the retrieved
320 * values in the default array
321 *
322 * @param array $params (reference ) an assoc array of name/value pairs
323 * @param array $defaults (reference ) an assoc array to hold the flattened values
324 *
325 * @return object CRM_Core_DAO_CustomField object
326 * @access public
327 * @static
328 */
329 static function retrieve(&$params, &$defaults) {
330 return CRM_Core_DAO::commonRetrieve('CRM_Core_DAO_CustomField', $params, $defaults);
331 }
332
333 /**
334 * update the is_active flag in the db
335 *
336 * @param int $id Id of the database record
337 * @param boolean $is_active Value we want to set the is_active field
338 *
339 * @return Object DAO object on sucess, null otherwise
340 *
341 * @access public
342 * @static
343 */
344 static function setIsActive($id, $is_active) {
345
346 CRM_Utils_System::flushCache();
347
348 //enable-disable CustomField
349 CRM_Core_BAO_UFField::setUFField($id, $is_active);
350 return CRM_Core_DAO::setFieldValue('CRM_Core_DAO_CustomField', $id, 'is_active', $is_active);
351 }
352
353 /**
354 * Get the field title.
355 *
356 * @param int $id id of field.
357 *
358 * @return string name
359 *
360 * @access public
361 * @static
362 *
363 */
364 public static function getTitle($id) {
365 return CRM_Core_DAO::getFieldValue('CRM_Core_DAO_CustomField', $id, 'label');
366 }
367
368 /**
369 * Store and return an array of all active custom fields.
370 *
0400dfac 371 * @param string $customDataType type of Custom Data; empty is a synonym for "all contact data types"
6a488035
TO
372 * @param boolean $showAll If true returns all fields (includes disabled fields)
373 * @param boolean $inline If true returns all inline fields (includes disabled fields)
374 * @param int $customDataSubType Custom Data sub type value
375 * @param int $customDataSubName Custom Data sub name value
376 * @param boolean $onlyParent return only top level custom data, for eg, only Participant and ignore subname and subtype
377 * @param boolean $onlySubType return only custom data for subtype
378 * @param boolean $checkPermission if false, do not include permissioning clause
379 *
380 * @return array $fields - an array of active custom fields.
381 *
382 * @access public
383 * @static
384 */
385 public static function &getFields($customDataType = 'Individual',
645a0241
TO
386 $showAll = FALSE,
387 $inline = FALSE,
388 $customDataSubType = NULL,
389 $customDataSubName = NULL,
390 $onlyParent = FALSE,
391 $onlySubType = FALSE,
392 $checkPermission = TRUE
6a488035 393 ) {
0400dfac
TO
394 if (empty($customDataType)) {
395 $customDataType = array('Contact', 'Individual', 'Organization', 'Household');
396 }
645a0241 397 if ($customDataType && !is_array($customDataType)) {
6a488035 398
645a0241 399 if (in_array($customDataType, CRM_Contact_BAO_ContactType::subTypes())) {
6a488035
TO
400 // This is the case when getFieldsForImport() requires fields
401 // limited strictly to a subtype.
402 $customDataSubType = $customDataType;
645a0241
TO
403 $customDataType = CRM_Contact_BAO_ContactType::getBasicType($customDataType);
404 $onlySubType = TRUE;
6a488035
TO
405 }
406
645a0241 407 if (in_array($customDataType, array_keys(CRM_Core_SelectValues::customGroupExtends()))) {
6a488035
TO
408 // this makes the method flexible to support retrieving fields
409 // for multiple extends value.
410 $customDataType = array($customDataType);
411 }
412 }
413
5439e6fb 414 $customDataSubType = CRM_Utils_Array::explodePadded($customDataSubType);
6a488035
TO
415
416 if (is_array($customDataType)) {
417 $cacheKey = implode('_', $customDataType);
418 }
419 else {
420 $cacheKey = $customDataType;
421 }
422
423 $cacheKey .= !empty($customDataSubType) ? ('_' . implode('_', $customDataSubType)) : '_0';
424 $cacheKey .= $customDataSubName ? "{$customDataSubName}_" : '_0';
425 $cacheKey .= $showAll ? '_1' : '_0';
426 $cacheKey .= $inline ? '_1_' : '_0_';
427 $cacheKey .= $onlyParent ? '_1_' : '_0_';
428 $cacheKey .= $onlySubType ? '_1_' : '_0_';
429 $cacheKey .= $checkPermission ? '_1_' : '_0_';
430
431 $cgTable = CRM_Core_DAO_CustomGroup::getTableName();
432
433 // also get the permission stuff here
434 if ($checkPermission) {
435 $permissionClause = CRM_Core_Permission::customGroupClause(CRM_Core_Permission::VIEW,
436 "{$cgTable}."
437 );
438 }
439 else {
440 $permissionClause = '(1)';
441 }
442
443 // lets md5 permission clause and take first 8 characters
444 $cacheKey .= substr(md5($permissionClause), 0, 8);
445
446 if (strlen($cacheKey) > 40) {
447 $cacheKey = md5($cacheKey);
448 }
449
450 if (!self::$_importFields ||
451 CRM_Utils_Array::value($cacheKey, self::$_importFields) === NULL
452 ) {
453 if (!self::$_importFields) {
454 self::$_importFields = array();
455 }
456
457 // check if we can retrieve from database cache
458 $fields = CRM_Core_BAO_Cache::getItem('contact fields', "custom importableFields $cacheKey");
459
460 if ($fields === NULL) {
461 $cfTable = self::getTableName();
462
463 $extends = '';
464 if (is_array($customDataType)) {
465 $value = NULL;
466 foreach ($customDataType as $dataType) {
645a0241
TO
467 if (in_array($dataType, array_keys(CRM_Core_SelectValues::customGroupExtends()))) {
468 if (in_array($dataType, array('Individual', 'Household', 'Organization'))) {
6a488035
TO
469 $val = "'" . CRM_Utils_Type::escape($dataType, 'String') . "', 'Contact' ";
470 }
471 else {
472 $val = "'" . CRM_Utils_Type::escape($dataType, 'String') . "'";
473 }
474 $value = $value ? $value . ", {$val}" : $val;
475 }
476 }
477 if ($value) {
478 $extends = "AND $cgTable.extends IN ( $value ) ";
479 }
480 }
481
4f57b83f 482 if (!empty($customDataType) && empty($extends)) {
0400dfac 483 // $customDataType specified a filter, but there is no corresponding SQL ($extends)
837afcfe
TO
484 self::$_importFields[$cacheKey] = array();
485 return self::$_importFields[$cacheKey];
486 }
487
6a488035
TO
488 if ($onlyParent) {
489 $extends .= " AND $cgTable.extends_entity_column_value IS NULL AND $cgTable.extends_entity_column_id IS NULL ";
490 }
491
492 $query = "SELECT $cfTable.id, $cfTable.label,
493 $cgTable.title,
a389ed51 494 $cfTable.data_type,
495 $cfTable.html_type,
496 $cfTable.default_value,
6a488035
TO
497 $cfTable.options_per_line, $cfTable.text_length,
498 $cfTable.custom_group_id,
817cf27c 499 $cfTable.is_required,
6a488035
TO
500 $cgTable.extends, $cfTable.is_search_range,
501 $cgTable.extends_entity_column_value,
502 $cgTable.extends_entity_column_id,
503 $cfTable.is_view,
504 $cfTable.option_group_id,
505 $cfTable.date_format,
506 $cfTable.time_format,
507 $cgTable.is_multiple
508 FROM $cfTable
509 INNER JOIN $cgTable
510 ON $cfTable.custom_group_id = $cgTable.id
511 WHERE ( 1 ) ";
512
513 if (!$showAll) {
514 $query .= " AND $cfTable.is_active = 1 AND $cgTable.is_active = 1 ";
515 }
516
517 if ($inline) {
518 $query .= " AND $cgTable.style = 'Inline' ";
519 }
520
521 //get the custom fields for specific type in
522 //combination with fields those support any type.
523 if (!empty($customDataSubType)) {
524 $subtypeClause = array();
525 foreach ($customDataSubType as $subtype) {
526 $subtype = CRM_Core_DAO::VALUE_SEPARATOR . $subtype . CRM_Core_DAO::VALUE_SEPARATOR;
527 $subtypeClause[] = "$cgTable.extends_entity_column_value LIKE '%{$subtype}%'";
528 }
529 if (!$onlySubType) {
530 $subtypeClause[] = "$cgTable.extends_entity_column_value IS NULL";
531 }
532 $query .= " AND ( " . implode(' OR ', $subtypeClause) . " )";
533 }
534
535 if ($customDataSubName) {
536 $query .= " AND ( $cgTable.extends_entity_column_id = $customDataSubName ) ";
537 }
538
539 // also get the permission stuff here
540 if ($checkPermission) {
541 $permissionClause = CRM_Core_Permission::customGroupClause(CRM_Core_Permission::VIEW,
542 "{$cgTable}.", TRUE
543 );
544 }
545 else {
546 $permissionClause = '(1)';
547 }
548
549 $query .= " $extends AND $permissionClause
550 ORDER BY $cgTable.weight, $cgTable.title,
551 $cfTable.weight, $cfTable.label";
552
553 $dao = CRM_Core_DAO::executeQuery($query);
554
555 $fields = array();
556 while (($dao->fetch()) != NULL) {
557 $fields[$dao->id]['label'] = $dao->label;
558 $fields[$dao->id]['groupTitle'] = $dao->title;
559 $fields[$dao->id]['data_type'] = $dao->data_type;
560 $fields[$dao->id]['html_type'] = $dao->html_type;
a389ed51 561 $fields[$dao->id]['default_value'] = $dao->default_value;
6a488035
TO
562 $fields[$dao->id]['text_length'] = $dao->text_length;
563 $fields[$dao->id]['options_per_line'] = $dao->options_per_line;
564 $fields[$dao->id]['custom_group_id'] = $dao->custom_group_id;
565 $fields[$dao->id]['extends'] = $dao->extends;
566 $fields[$dao->id]['is_search_range'] = $dao->is_search_range;
567 $fields[$dao->id]['extends_entity_column_value'] = $dao->extends_entity_column_value;
568 $fields[$dao->id]['extends_entity_column_id'] = $dao->extends_entity_column_id;
569 $fields[$dao->id]['is_view'] = $dao->is_view;
570 $fields[$dao->id]['is_multiple'] = $dao->is_multiple;
571 $fields[$dao->id]['option_group_id'] = $dao->option_group_id;
572 $fields[$dao->id]['date_format'] = $dao->date_format;
573 $fields[$dao->id]['time_format'] = $dao->time_format;
817cf27c 574 $fields[$dao->id]['is_required'] = $dao->is_required;
6a488035
TO
575 }
576
577 CRM_Core_BAO_Cache::setItem($fields,
578 'contact fields',
579 "custom importableFields $cacheKey"
580 );
581 }
582 self::$_importFields[$cacheKey] = $fields;
583 }
584
585 return self::$_importFields[$cacheKey];
586 }
587
588 /**
589 * Return the field ids and names (with groups) for import purpose.
590 *
2a6da8d7
EM
591 * @param int|string $contactType Contact type
592 * @param boolean $showAll If true returns all fields (includes disabled fields)
593 * @param boolean $onlyParent return fields ONLY related to basic types
594 * @param boolean $search when called from search and multiple records need to be returned
595 * @param boolean $checkPermission if false, do not include permissioning clause
596 *
597 * @param bool $withMultiple
6a488035
TO
598 *
599 * @return array $fields -
600 *
601 * @access public
602 * @static
603 */
604 public static function &getFieldsForImport($contactType = 'Individual',
605 $showAll = FALSE,
606 $onlyParent = FALSE,
607 $search = FALSE,
608 $checkPermission = TRUE,
609 $withMultiple = FALSE
610 ) {
611 // Note: there are situations when we want getFieldsForImport() return fields related
612 // ONLY to basic contact types, but NOT subtypes. And thats where $onlyParent is helpful
613 $fields = &self::getFields($contactType,
614 $showAll,
615 FALSE,
616 NULL,
617 NULL,
618 $onlyParent,
619 FALSE,
620 $checkPermission
621 );
622
623 $importableFields = array();
624 foreach ($fields as $id => $values) {
625 // for now we should not allow multiple fields in profile / export etc, hence unsetting
626 if (!$search &&
8cc574cf 627 (!empty($values['is_multiple']) && !$withMultiple)
6a488035
TO
628 ) {
629 continue;
630 }
631
632 /* generate the key for the fields array */
633
634 $key = "custom_$id";
635
636 $regexp = preg_replace('/[.,;:!?]/', '', CRM_Utils_Array::value(0, $values));
637 $importableFields[$key] = array(
638 'name' => $key,
639 'title' => CRM_Utils_Array::value('label', $values),
640 'headerPattern' => '/' . preg_quote($regexp, '/') . '/',
641 'import' => 1,
642 'custom_field_id' => $id,
643 'options_per_line' => CRM_Utils_Array::value('options_per_line', $values),
26509325 644 'text_length' => CRM_Utils_Array::value('text_length', $values, 255),
6a488035
TO
645 'data_type' => CRM_Utils_Array::value('data_type', $values),
646 'html_type' => CRM_Utils_Array::value('html_type', $values),
647 'is_search_range' => CRM_Utils_Array::value('is_search_range', $values),
648 );
649
650 // CRM-6681, pass date and time format when html_type = Select Date
651 if (CRM_Utils_Array::value('html_type', $values) == 'Select Date') {
652 $importableFields[$key]['date_format'] = CRM_Utils_Array::value('date_format', $values);
653 $importableFields[$key]['time_format'] = CRM_Utils_Array::value('time_format', $values);
654 }
655 }
656
657 return $importableFields;
658 }
659
660 /**
661 * Get the field id from an import key
662 *
2a6da8d7 663 * @param string $key The key to parse
6a488035 664 *
2a6da8d7 665 * @param bool $all
6a488035
TO
666 * @return int|null The id (if exists)
667 * @access public
668 * @static
669 */
670 public static function getKeyID($key, $all = FALSE) {
671 $match = array();
672 if (preg_match('/^custom_(\d+)_?(-?\d+)?$/', $key, $match)) {
673 if (!$all) {
674 return $match[1];
675 }
676 else {
677 return array(
678 $match[1],
679 CRM_Utils_Array::value(2, $match),
680 );
681 }
682 }
5439e6fb 683 return $all ? array(NULL, NULL) : NULL;
6a488035
TO
684 }
685
686 /**
687 * Use the cache to get all values of a specific custom field
688 *
689 * @param int $fieldID the custom field ID
690 *
1b4d9e39 691 * @return CRM_Core_DAO_CustomField $field the field object
6a488035
TO
692 * @static
693 * public
694 */
695 static function getFieldObject($fieldID) {
696 $field = new CRM_Core_DAO_CustomField();
697
698 // check if we can get the field values from the system cache
699 $cacheKey = "CRM_Core_DAO_CustomField_{$fieldID}";
700 $cache = CRM_Utils_Cache::singleton();
701 $fieldValues = $cache->get($cacheKey);
702 if (empty($fieldValues)) {
703 $field->id = $fieldID;
704 if (!$field->find(TRUE)) {
705 CRM_Core_Error::fatal();
706 }
707
708 $fieldValues = array();
709 CRM_Core_DAO::storeValues($field, $fieldValues);
710
711 $cache->set($cacheKey, $fieldValues);
712 }
713 else {
714 $field->copyValues($fieldValues);
715 }
716
717 return $field;
718 }
719
720 /**
721 * This function for building custom fields
722 *
2a6da8d7
EM
723 * @param CRM_Core_Form $qf form object (reference)
724 * @param string $elementName name of the custom field
725 * @param $fieldId
3130209f 726 * @param boolean $inactiveNeeded -deprecated
2a6da8d7
EM
727 * @param bool $useRequired
728 * @param boolean $search true if used for search else false
729 * @param string $label label for custom field
6a488035 730 *
2a6da8d7 731 * @internal param bool $userRequired true if required else false
6a488035
TO
732 * @access public
733 * @static
734 */
735 public static function addQuickFormElement(&$qf,
736 $elementName,
737 $fieldId,
738 $inactiveNeeded = FALSE,
739 $useRequired = TRUE,
740 $search = FALSE,
741 $label = NULL
742 ) {
6a488035 743 $field = self::getFieldObject($fieldId);
3130209f 744 $widget = $field->html_type;
2dd1b730 745
a7d0519b 746 // Custom field HTML should indicate group+field name
be09038f 747 $groupName = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_CustomGroup', $field->custom_group_id);
748 $dataCrmCustomVal = $groupName.':'.$field->name;
749 $dataCrmCustomAttr = 'data-crm-custom="'.$dataCrmCustomVal.'"';
a7d0519b 750 $field->attributes .= $dataCrmCustomAttr;
2dd1b730 751
6a488035 752 // Fixed for Issue CRM-2183
3130209f
CW
753 if ($widget == 'TextArea' && $search) {
754 $widget = 'Text';
755 }
756
1b4d9e39 757 $placeholder = $search ? ts('- any -') : ($useRequired ? ts('- select -') : ts('- none -'));
6a488035 758
8a6cfaa9 759 // FIXME: Why are select state/country separate widget types?
3130209f
CW
760 $isSelect = (in_array($widget, array('Select', 'Multi-Select', 'Select State/Province', 'Multi-Select State/Province', 'Select Country', 'Multi-Select Country', 'AdvMulti-Select', 'CheckBox', 'Radio')));
761
762 if ($isSelect) {
763 $options = CRM_Utils_Array::value('values', civicrm_api3('contact', 'getoptions', array('field' => "custom_$fieldId", 'context' => $search ? 'search' : 'create'), array()));
764
765 // Consolidate widget types to simplify the below switch statement
766 if ($search || ($widget !== 'AdvMulti-Select' && strpos($widget, 'Select') !== FALSE)) {
767 $widget = 'Select';
768 }
8a6cfaa9
CW
769 $selectAttributes = array(
770 'data-crm-custom' => $dataCrmCustomVal,
771 'class' => 'crm-select2',
772 );
3130209f
CW
773 // Search field is always multi-select
774 if ($search || strpos($field->html_type, 'Multi') !== FALSE) {
775 $selectAttributes['class'] .= ' huge';
8a6cfaa9 776 $selectAttributes['multiple'] = 'multiple';
3130209f
CW
777 $selectAttributes['placeholder'] = $placeholder;
778 }
779 // Add data for popup link. Normally this is handled by CRM_Core_Form->addSelect
780 if ($field->option_group_id && !$search && $widget == 'Select' && CRM_Core_Permission::check('administer CiviCRM')) {
781 $selectAttributes += array(
782 'data-api-entity' => 'contact', // FIXME: This works because the getoptions api isn't picky about custom fields, but it's WRONG
783 'data-api-field' => 'custom_' . $field->id,
784 'data-option-edit-path' => 'civicrm/admin/options/' . CRM_Core_DAO::getFieldValue('CRM_Core_DAO_OptionGroup', $field->option_group_id),
785 );
8a6cfaa9 786 }
8a6cfaa9
CW
787 }
788
6a488035
TO
789 if (!isset($label)) {
790 $label = $field->label;
791 }
792
793 /**
794 * at some point in time we might want to split the below into small functions
795 **/
796
3130209f 797 switch ($widget) {
6a488035 798 case 'Text':
3130209f 799 case 'Link':
6a488035
TO
800 if ($field->is_search_range && $search) {
801 $qf->add('text', $elementName . '_from', $label . ' ' . ts('From'), $field->attributes);
802 $qf->add('text', $elementName . '_to', ts('To'), $field->attributes);
803 }
804 else {
3130209f 805 $element = &$qf->add('text', $elementName, $label,
6a488035
TO
806 $field->attributes,
807 $useRequired && !$search
808 );
809 }
810 break;
811
812 case 'TextArea':
a7d0519b 813 $attributes = $dataCrmCustomAttr;
6a488035
TO
814 if ($field->note_rows) {
815 $attributes .= 'rows=' . $field->note_rows;
816 }
817 else {
818 $attributes .= 'rows=4';
819 }
6a488035
TO
820 if ($field->note_columns) {
821 $attributes .= ' cols=' . $field->note_columns;
822 }
823 else {
824 $attributes .= ' cols=60';
825 }
2f940a36
NG
826 if ($field->text_length) {
827 $attributes .= ' maxlength=' . $field->text_length;
828 }
3130209f 829 $element = &$qf->add('textarea',
6a488035
TO
830 $elementName,
831 $label,
832 $attributes,
833 $useRequired && !$search
834 );
835 break;
836
837 case 'Select Date':
838 if ($field->is_search_range && $search) {
839 $qf->addDate($elementName . '_from', $label . ' - ' . ts('From'), FALSE,
840 array(
841 'format' => $field->date_format,
842 'timeFormat' => $field->time_format,
843 'startOffset' => $field->start_date_years,
844 'endOffset' => $field->end_date_years,
be09038f 845 'data-crm-custom' => $dataCrmCustomVal,
6a488035
TO
846 )
847 );
848
849 $qf->addDate($elementName . '_to', ts('To'), FALSE,
850 array(
851 'format' => $field->date_format,
852 'timeFormat' => $field->time_format,
853 'startOffset' => $field->start_date_years,
854 'endOffset' => $field->end_date_years,
be09038f 855 'data-crm-custom' => $dataCrmCustomVal,
6a488035
TO
856 )
857 );
858 }
859 else {
860 $required = $useRequired && !$search;
861
862 $qf->addDate($elementName, $label, $required, array(
863 'format' => $field->date_format,
864 'timeFormat' => $field->time_format,
865 'startOffset' => $field->start_date_years,
866 'endOffset' => $field->end_date_years,
2dd1b730 867 'data-crm-custom' => $dataCrmCustomVal,
6a488035
TO
868 ));
869 }
870 break;
871
872 case 'Radio':
873 $choice = array();
3130209f
CW
874 foreach ($options as $v => $l) {
875 $choice[] = $qf->createElement('radio', NULL, '', $l, (string)$v, $field->attributes);
6a488035 876 }
3130209f 877 $group = $qf->addGroup($choice, $elementName, $label);
6a488035
TO
878 if ($useRequired && !$search) {
879 $qf->addRule($elementName, ts('%1 is a required field.', array(1 => $label)), 'required');
880 }
8a4f27dc 881 else {
b847e6e7 882 $group->setAttribute('allowClear', TRUE);
8a4f27dc 883 }
6a488035
TO
884 break;
885
3130209f 886 // For all select elements
6a488035 887 case 'Select':
3130209f
CW
888 if (empty($selectAttributes['multiple'])) {
889 $options = array('' => $placeholder) + $options;
890 }
891 $qf->add('select', $elementName, $label, $options, $useRequired && !$search, $selectAttributes);
6a488035 892
3130209f
CW
893 // Add and/or option for fields that store multiple values
894 if ($search && self::isSerialized($field)) {
6a488035 895
3130209f
CW
896 $operators = array(
897 $qf->createElement('radio', NULL, '', ts('Any'), 'or', array('title' => ts('Results may contain any of the selected options'))),
898 $qf->createElement('radio', NULL, '', ts('All'), 'and', array('title' => ts('Results must have all of the selected options'))),
899 );
900 $qf->addGroup($operators, $elementName . '_operator');
901 $qf->setDefaults(array($elementName . '_operator' => 'or'));
6a488035 902 }
3130209f 903 break;
6a488035 904
3130209f 905 case 'AdvMulti-Select':
6a488035
TO
906 $include =& $qf->addElement(
907 'advmultiselect',
908 $elementName,
3130209f 909 $label, $options,
6a488035
TO
910 array(
911 'size' => 5,
912 'style' => '',
913 'class' => 'advmultiselect',
2dd1b730 914 'data-crm-custom' => $dataCrmCustomVal,
6a488035
TO
915 )
916 );
917
918 $include->setButtonAttributes('add', array('value' => ts('Add >>')));
919 $include->setButtonAttributes('remove', array('value' => ts('<< Remove')));
920
921 if ($useRequired && !$search) {
922 $qf->addRule($elementName, ts('%1 is a required field.', array(1 => $label)), 'required');
923 }
924 break;
925
6a488035 926 case 'CheckBox':
6a488035 927 $check = array();
3130209f 928 foreach ($options as $v => $l) {
be09038f 929 $check[] = &$qf->addElement('advcheckbox', $v, NULL, $l, array('data-crm-custom' => $dataCrmCustomVal));
6a488035 930 }
6a488035
TO
931 $qf->addGroup($check, $elementName, $label);
932 if ($useRequired && !$search) {
933 $qf->addRule($elementName, ts('%1 is a required field.', array(1 => $label)), 'required');
934 }
935 break;
936
937 case 'File':
938 // we should not build upload file in search mode
939 if ($search) {
940 return;
941 }
942 $qf->add(
943 strtolower($field->html_type),
944 $elementName,
945 $label,
946 $field->attributes,
947 $useRequired && !$search
948 );
949 $qf->addUploadElement($elementName);
950 break;
951
6a488035 952 case 'RichTextEditor':
be09038f 953 $attributes = array('rows' => $field->note_rows, 'cols' => $field->note_columns, 'data-crm-custom' => $dataCrmCustomVal);
2f940a36 954 if ($field->text_length) {
97d5a31f 955 $attributes['maxlength'] = $field->text_length;
2f940a36
NG
956 }
957 $qf->addWysiwyg($elementName, $label, $attributes, $search);
6a488035
TO
958 break;
959
960 case 'Autocomplete-Select':
6a488035 961 static $customUrls = array();
06508628
CW
962 // Fixme: why is this a string in the first place??
963 $attributes = array();
964 if ($field->attributes) {
965 foreach(explode(' ', $field->attributes) as $at) {
966 if (strpos($at, '=')) {
967 list($k, $v) = explode('=', $at);
968 $attributes[$k] = trim($v, ' "');
969 }
970 }
971 }
6a488035 972 if ($field->data_type == 'ContactReference') {
06508628
CW
973 $attributes['class'] = (isset($attributes['class']) ? $attributes['class'] . ' ' : '') . 'crm-form-contact-reference huge';
974 $attributes['data-api-entity'] = 'contact';
975 $qf->add('text', $elementName, $label, $attributes,
1b4d9e39
CW
976 $useRequired && !$search
977 );
978
6a488035
TO
979 $urlParams = "context=customfield&id={$field->id}";
980
981 $customUrls[$elementName] = CRM_Utils_System::url('civicrm/ajax/contactref',
982 $urlParams,
983 FALSE, NULL, FALSE
984 );
985
6a488035
TO
986 }
987 else {
2fea9ed9 988 // FIXME: This won't work with customFieldOptions hook
1b4d9e39
CW
989 $attributes += array(
990 'entity' => 'option_value',
991 'placeholder' => $placeholder,
9f388466 992 'multiple' => $search,
1b4d9e39
CW
993 'api' => array(
994 'params' => array('option_group_id' => $field->option_group_id),
995 ),
6a488035 996 );
1b4d9e39 997 $qf->addEntityRef($elementName, $label, $attributes, $useRequired && !$search);
6a488035
TO
998 }
999
1000 $qf->assign('customUrls', $customUrls);
1001 break;
1002 }
1003
1004 switch ($field->data_type) {
1005 case 'Int':
1006 // integers will have numeric rule applied to them.
1007 if ($field->is_search_range && $search) {
1008 $qf->addRule($elementName . '_from', ts('%1 From must be an integer (whole number).', array(1 => $label)), 'integer');
1009 $qf->addRule($elementName . '_to', ts('%1 To must be an integer (whole number).', array(1 => $label)), 'integer');
1010 }
3130209f 1011 elseif ($widget == 'Text') {
6a488035
TO
1012 $qf->addRule($elementName, ts('%1 must be an integer (whole number).', array(1 => $label)), 'integer');
1013 }
1014 break;
1015
1016 case 'Float':
1017 if ($field->is_search_range && $search) {
1018 $qf->addRule($elementName . '_from', ts('%1 From must be a number (with or without decimal point).', array(1 => $label)), 'numeric');
1019 $qf->addRule($elementName . '_to', ts('%1 To must be a number (with or without decimal point).', array(1 => $label)), 'numeric');
1020 }
3130209f 1021 elseif ($widget == 'Text') {
6a488035
TO
1022 $qf->addRule($elementName, ts('%1 must be a number (with or without decimal point).', array(1 => $label)), 'numeric');
1023 }
1024 break;
1025
1026 case 'Money':
1027 if ($field->is_search_range && $search) {
1028 $qf->addRule($elementName . '_from', ts('%1 From must in proper money format. (decimal point/comma/space is allowed).', array(1 => $label)), 'money');
1029 $qf->addRule($elementName . '_to', ts('%1 To must in proper money format. (decimal point/comma/space is allowed).', array(1 => $label)), 'money');
1030 }
3130209f 1031 elseif ($widget == 'Text') {
6a488035
TO
1032 $qf->addRule($elementName, ts('%1 must be in proper money format. (decimal point/comma/space is allowed).', array(1 => $label)), 'money');
1033 }
1034 break;
1035
1036 case 'Link':
3130209f
CW
1037 $element->setAttribute('onfocus', "if (!this.value) {this.value='http://';}");
1038 $element->setAttribute('onblur', "if (this.value == 'http://') {this.value='';}");
1039 $element->setAttribute('class', "url");
6a488035
TO
1040 $qf->addRule($elementName, ts('Enter a valid Website.'), 'wikiURL');
1041 break;
1042 }
1043 if ($field->is_view && !$search) {
1044 $qf->freeze($elementName);
1045 }
1046 }
1047
1048 /**
1049 * Delete the Custom Field.
1050 *
1051 * @param object $field - the field object
1052 *
1053 * @return boolean
1054 *
1055 * @access public
1056 * @static
1057 *
1058 */
1059 public static function deleteField($field) {
1060 CRM_Utils_System::flushCache();
1061
1062 // first delete the custom option group and values associated with this field
1063 if ($field->option_group_id) {
1064 //check if option group is related to any other field, if
1065 //not delete the option group and related option values
1066 self::checkOptionGroup($field->option_group_id);
1067 }
1068
1069 // next drop the column from the custom value table
1070 self::createField($field, 'delete');
1071
1072 $field->delete();
1073 CRM_Core_BAO_UFField::delUFField($field->id);
1074 CRM_Utils_Weight::correctDuplicateWeights('CRM_Core_DAO_CustomField');
1075
1076 return;
1077 }
1078
1079 /**
1080 * Given a custom field value, its id and the set of options
1081 * find the display value for this field
1082 *
fd31fa4c
EM
1083 * @param mixed $value the custom field value
1084 * @param int $id the custom field id
1085 * @param int $options the assoc array of option name/value pairs
1086 *
1087 * @param null $contactID
1088 * @param null $fieldID
6a488035
TO
1089 *
1090 * @return string the display value
1091 *
1092 * @static
1093 * @access public
1094 */
1095 static function getDisplayValue($value, $id, &$options, $contactID = NULL, $fieldID = NULL) {
1096 $option = &$options[$id];
1097 $attributes = &$option['attributes'];
1098 $html_type = $attributes['html_type'];
1099 $data_type = $attributes['data_type'];
1100 $format = CRM_Utils_Array::value('format', $attributes);
1101
1102 return self::getDisplayValueCommon($value,
1103 $option,
1104 $html_type,
1105 $data_type,
1106 $format,
1107 $contactID,
1108 $fieldID
1109 );
1110 }
1111
b5c2afd0
EM
1112 /**
1113 * @param $value
1114 * @param $option
1115 * @param $html_type
1116 * @param $data_type
1117 * @param null $format
1118 * @param null $contactID
1119 * @param null $fieldID
1120 *
1121 * @return array|mixed|null|string
1122 */
6a488035
TO
1123 static function getDisplayValueCommon($value,
1124 &$option,
1125 $html_type,
1126 $data_type,
1127 $format = NULL,
1128 $contactID = NULL,
1129 $fieldID = NULL
1130 ) {
1131 $display = $value;
1132
1133 if ($fieldID &&
1134 (($html_type == 'Radio' && $data_type != 'Boolean') ||
1135 ($html_type == 'Autocomplete-Select' && $data_type != 'ContactReference') ||
1136 $html_type == 'Select' ||
1137 $html_type == 'CheckBox' ||
1138 $html_type == 'AdvMulti-Select' ||
1139 $html_type == 'Multi-Select'
1140 )
1141 ) {
1142 CRM_Utils_Hook::customFieldOptions($fieldID, $option);
1143 }
1144
1145 switch ($html_type) {
1146 case 'Radio':
1147 if ($data_type == 'Boolean') {
cbc718fc
ML
1148 // Do not assume that if not yes means no.
1149 $display = '';
1150 if ($value) {
1151 $display = ts('Yes');
1152 }
01e21c0a 1153 elseif ((string)$value === '0') {
cbc718fc
ML
1154 $display = ts('No');
1155 }
6a488035
TO
1156 }
1157 else {
1158 $display = CRM_Utils_Array::value($value, $option);
1159 }
1160 break;
1161
1162 case 'Autocomplete-Select':
1163 if ($data_type == 'ContactReference' &&
1164 $value
1165 ) {
1166 $display = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact', $value, 'display_name');
1167 }
1168 else {
1169 $display = CRM_Utils_Array::value($value, $option);
1170 }
1171 break;
1172
1173 case 'Select':
1174 $display = CRM_Utils_Array::value($value, $option);
1175 break;
1176
1177 case 'CheckBox':
1178 case 'AdvMulti-Select':
1179 case 'Multi-Select':
1180 if (is_array($value)) {
1181 $checkedData = $value;
1182 }
1183 else {
1184 $checkedData = explode(CRM_Core_DAO::VALUE_SEPARATOR,
1185 substr($value, 1, -1)
1186 );
1187 if ($html_type == 'CheckBox') {
1188 $newData = array();
1189 foreach ($checkedData as $v) {
1190 $newData[$v] = 1;
1191 }
1192 $checkedData = $newData;
1193 }
1194 }
1195
1196 $v = array();
1197 $p = array();
1198 foreach ($checkedData as $key => $val) {
6a488035
TO
1199 if ($html_type == 'CheckBox') {
1200 if ($val) {
1201 $p[] = $key;
1202 $v[] = CRM_Utils_Array::value($key, $option);
1203 }
1204 }
1205 else {
1206 $p[] = $val;
1207 $v[] = CRM_Utils_Array::value($val, $option);
1208 }
1209 }
1210 if (!empty($v)) {
1211 $display = implode(', ', $v);
1212 }
1213 break;
1214
1215 case 'Select Date':
1216 if (is_array($value)) {
1217 foreach ($value as $key => $val) {
1218 $display[$key] = CRM_Utils_Date::customFormat($val);
1219 }
1220 }
1221 else {
1222 // remove time element display if time is not set
1223 if (empty($option['attributes']['time_format'])) {
1224 $value = substr($value, 0, 10);
1225 }
1226 $display = CRM_Utils_Date::customFormat($value);
1227 }
1228 break;
1229
1230 case 'Select State/Province':
1231 if (empty($value)) {
1232 $display = '';
1233 }
1234 else {
1235 $display = CRM_Core_PseudoConstant::stateProvince($value);
1236 }
1237 break;
1238
1239 case 'Multi-Select State/Province':
1240 if (is_array($value)) {
1241 $checkedData = $value;
1242 }
1243 else {
1244 $checkedData = explode(CRM_Core_DAO::VALUE_SEPARATOR,
1245 substr($value, 1, -1)
1246 );
1247 }
1248
1249 $states = CRM_Core_PseudoConstant::stateProvince();
1250 $display = NULL;
1251 foreach ($checkedData as $stateID) {
1252 if ($display) {
1253 $display .= ', ';
1254 }
1255 $display .= $states[$stateID];
1256 }
1257 break;
1258
1259 case 'Select Country':
1260 if (empty($value)) {
1261 $display = '';
1262 }
1263 else {
1264 $display = CRM_Core_PseudoConstant::country($value);
1265 }
1266 break;
1267
1268 case 'Multi-Select Country':
1269 if (is_array($value)) {
1270 $checkedData = $value;
1271 }
1272 else {
1273 $checkedData = explode(CRM_Core_DAO::VALUE_SEPARATOR,
1274 substr($value, 1, -1)
1275 );
1276 }
1277
1278 $countries = CRM_Core_PseudoConstant::country();
1279 $display = NULL;
1280 foreach ($checkedData as $countryID) {
1281 if ($display) {
1282 $display .= ', ';
1283 }
1284 $display .= $countries[$countryID];
1285 }
1286 break;
1287
1288 case 'File':
1289 if ($contactID) {
1290 $url = self::getFileURL($contactID, $fieldID, $value);
1291 if ($url) {
1292 $display = $url['file_url'];
1293 }
1294 }
1295 break;
1296
1297 case 'TextArea':
1298 if (empty($value)) {
1299 $display = '';
1300 }
1301 else {
1302 $display = nl2br($value);
1303 }
1304 break;
1305
1306 case 'Link':
1307 if (empty($value)) {
1308 $display = '';
1309 }
1310 else {
1311 $display = $value;
1312 }
1313 }
6a488035
TO
1314 return $display ? $display : $value;
1315 }
1316
1317 /**
1318 * Function to set default values for custom data used in profile
1319 *
1320 * @params int $customFieldId custom field id
1321 * @params string $elementName custom field name
1322 * @params array $defaults associated array of fields
1323 * @params int $contactId contact id
77b97be7
EM
1324 * @param $customFieldId
1325 * @param $elementName
1326 * @param $defaults
1327 * @param null $contactId
1328 * @param int $mode profile mode
1329 * @param mixed $value if passed - dont fetch value from db,
6a488035 1330 * just format the given value
77b97be7 1331 *
6a488035
TO
1332 * @static
1333 * @access public
1334 */
1335 static function setProfileDefaults($customFieldId,
1336 $elementName,
1337 &$defaults,
1338 $contactId = NULL,
1339 $mode = NULL,
1340 $value = NULL
1341 ) {
1342 //get the type of custom field
1343 $customField = new CRM_Core_BAO_CustomField();
1344 $customField->id = $customFieldId;
1345 $customField->find(TRUE);
1346
1347 if (!$contactId) {
1348 if ($mode == CRM_Profile_Form::MODE_CREATE) {
1349 $value = $customField->default_value;
1350 }
1351 }
1352 else {
1353 if (!isset($value)) {
1354 $info = self::getTableColumnGroup($customFieldId);
1355 $query = "SELECT {$info[0]}.{$info[1]} as value FROM {$info[0]} WHERE {$info[0]}.entity_id = {$contactId}";
1356 $result = CRM_Core_DAO::executeQuery($query);
1357 if ($result->fetch()) {
1358 $value = $result->value;
1359 }
1360 }
1361
1362 if ($customField->data_type == 'Country') {
1363 if (!$value) {
1364 $config = CRM_Core_Config::singleton();
1365 if ($config->defaultContactCountry) {
1366 $value = $config->defaultContactCountry();
1367 }
1368 }
1369 }
1370 }
1371
1372 //set defaults if mode is registration
1373 if (!trim($value) &&
1374 ($value !== 0) &&
1375 (!in_array($mode, array(CRM_Profile_Form::MODE_EDIT, CRM_Profile_Form::MODE_SEARCH)))
1376 ) {
1377 $value = $customField->default_value;
1378 }
1379
1380 if ($customField->data_type == 'Money' && isset($value)) {
1381 $value = number_format($value, 2);
1382 }
1383 switch ($customField->html_type) {
1384 case 'CheckBox':
1385 case 'AdvMulti-Select':
1386 case 'Multi-Select':
1387 $customOption = CRM_Core_BAO_CustomOption::getCustomOption($customFieldId, FALSE);
1388 $defaults[$elementName] = array();
1389 $checkedValue = explode(CRM_Core_DAO::VALUE_SEPARATOR,
1390 substr($value, 1, -1)
1391 );
1392 foreach ($customOption as $val) {
1393 if (in_array($val['value'], $checkedValue)) {
1394 if ($customField->html_type == 'CheckBox') {
1395 $defaults[$elementName][$val['value']] = 1;
1396 }
1397 elseif ($customField->html_type == 'Multi-Select' ||
1398 $customField->html_type == 'AdvMulti-Select'
1399 ) {
1400 $defaults[$elementName][$val['value']] = $val['value'];
1401 }
1402 }
1403 }
1404 break;
1405
1406 case 'Select Date':
1407 if ($value) {
1408 list($defaults[$elementName], $defaults[$elementName . '_time']) = CRM_Utils_Date::setDateDefaults(
1409 $value,
1410 NULL,
1411 $customField->date_format,
1412 $customField->time_format
1413 );
1414 }
1415 break;
1416
1417 case 'Autocomplete-Select':
1418 if ($customField->data_type == 'ContactReference') {
1419 if (is_numeric($value)) {
1420 $defaults[$elementName . '_id'] = $value;
1421 $defaults[$elementName] = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact', $value, 'sort_name');
1422 }
1423 }
1424 else {
1b4d9e39 1425 $defaults[$elementName] = $value;
6a488035
TO
1426 }
1427 break;
1428
1429 default:
1430 $defaults[$elementName] = $value;
1431 }
1432 }
1433
b5c2afd0
EM
1434 /**
1435 * @param $contactID
1436 * @param $cfID
1437 * @param null $fileID
1438 * @param bool $absolute
1439 *
1440 * @return array
1441 */
1442 /**
1443 * @param $contactID
1444 * @param $cfID
1445 * @param null $fileID
1446 * @param bool $absolute
1447 *
1448 * @return array
1449 */
6a488035
TO
1450 static function getFileURL($contactID, $cfID, $fileID = NULL, $absolute = FALSE) {
1451 if ($contactID) {
1452 if (!$fileID) {
1453 $params = array('id' => $cfID);
1454 $defaults = array();
1455 CRM_Core_DAO::commonRetrieve('CRM_Core_DAO_CustomField', $params, $defaults);
1456 $columnName = $defaults['column_name'];
1457
1458 //table name of custom data
1459 $tableName = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_CustomGroup',
1460 $defaults['custom_group_id'],
1461 'table_name', 'id'
1462 );
1463
1464 //query to fetch id from civicrm_file
1465 $query = "SELECT {$columnName} FROM {$tableName} where entity_id = {$contactID}";
1466 $fileID = CRM_Core_DAO::singleValueQuery($query);
1467 }
1468
1469 $result = array();
1470 if ($fileID) {
1471 $fileType = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_File',
1472 $fileID,
1473 'mime_type',
1474 'id'
1475 );
1476 $result['file_id'] = $fileID;
1477
1478 if ($fileType == 'image/jpeg' ||
1479 $fileType == 'image/pjpeg' ||
1480 $fileType == 'image/gif' ||
1481 $fileType == 'image/x-png' ||
1482 $fileType == 'image/png'
1483 ) {
1484 $entityId = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_EntityFile',
1485 $fileID,
1486 'entity_id',
1487 'id'
1488 );
1489 list($path) = CRM_Core_BAO_File::path($fileID, $entityId, NULL, NULL);
1490 list($imageWidth, $imageHeight) = getimagesize($path);
1491 list($imageThumbWidth, $imageThumbHeight) = CRM_Contact_BAO_Contact::getThumbSize($imageWidth, $imageHeight);
1492 $url = CRM_Utils_System::url('civicrm/file',
1493 "reset=1&id=$fileID&eid=$contactID",
1494 $absolute, NULL, TRUE, TRUE
1495 );
ebb9197b
C
1496 $result['file_url'] = "
1497 <a href=\"$url\" class='crm-image-popup'>
1498 <img src=\"$url\" width=$imageThumbWidth height=$imageThumbHeight/>
1499 </a>";
6a488035
TO
1500 // for non image files
1501 }
1502 else {
1503 $uri = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_File',
1504 $fileID,
1505 'uri'
1506 );
1507 $url = CRM_Utils_System::url('civicrm/file',
1508 "reset=1&id=$fileID&eid=$contactID",
1509 $absolute, NULL, TRUE, TRUE
1510 );
1511 $result['file_url'] = "<a href=\"$url\">{$uri}</a>";
1512 }
1513 }
1514 return $result;
1515 }
1516 }
1517
1518 /**
1519 * Format custom fields before inserting
1520 *
1521 * @param int $customFieldId custom field id
1522 * @param array $customFormatted formatted array
1523 * @param mix $value value of custom field
1524 * @param string $customFieldExtend custom field extends
1525 * @param int $customValueId custom option value id
1526 * @param int $entityId entity id (contribution, membership...)
1527 * @param boolean $inline consider inline custom groups only
1528 * @param boolean $checkPermission if false, do not include permissioning clause
211353a8 1529 * @param boolean $includeViewOnly if true, fields marked 'View Only' are included. Required for APIv3.
6a488035
TO
1530 *
1531 * @return array $customFormatted formatted custom field array
1532 * @static
1533 */
1534 static function formatCustomField($customFieldId, &$customFormatted, $value,
1535 $customFieldExtend, $customValueId = NULL,
1536 $entityId = NULL,
1537 $inline = FALSE,
211353a8
C
1538 $checkPermission = TRUE,
1539 $includeViewOnly = false
6a488035
TO
1540 ) {
1541 //get the custom fields for the entity
1542 //subtype and basic type
1543 $customDataSubType = NULL;
f71d8e61 1544 if (is_array($customFieldExtend)) {
1545 $customFieldExtend = $customFieldExtend[0];
1546 }
2dd1b730 1547
6a488035
TO
1548 if (in_array($customFieldExtend,
1549 CRM_Contact_BAO_ContactType::subTypes()
1550 )) {
1551 // This is the case when getFieldsForImport() requires fields
1552 // of subtype and its parent.CRM-5143
1553 $customDataSubType = $customFieldExtend;
1554 $customFieldExtend = CRM_Contact_BAO_ContactType::getBasicType($customDataSubType);
1555 }
1556
1557 $customFields = CRM_Core_BAO_CustomField::getFields($customFieldExtend,
1558 FALSE,
1559 $inline,
1560 $customDataSubType,
1561 NULL,
1562 FALSE,
1563 FALSE,
1564 $checkPermission
1565 );
1566
1567 if (!array_key_exists($customFieldId, $customFields)) {
1568 return;
1569 }
1570
1571 // return if field is a 'code' field
211353a8 1572 if (!$includeViewOnly && !empty($customFields[$customFieldId]['is_view'])) {
6a488035
TO
1573 return;
1574 }
1575
1576 list($tableName, $columnName, $groupID) = self::getTableColumnGroup($customFieldId);
1577
6a488035
TO
1578 if (!$customValueId &&
1579 // we always create new entites for is_multiple unless specified
1580 !$customFields[$customFieldId]['is_multiple'] &&
1581 $entityId
1582 ) {
1583 $query = "
1584SELECT id
1585 FROM $tableName
1586 WHERE entity_id={$entityId}";
1587
1588 $customValueId = CRM_Core_DAO::singleValueQuery($query);
1589 }
1590
1591 //fix checkbox, now check box always submits values
1592 if ($customFields[$customFieldId]['html_type'] == 'CheckBox') {
1593 if ($value) {
1594 // Note that only during merge this is not an array, and you can directly use value
1595 if (is_array($value)) {
1596 $selectedValues = array();
1597 foreach ($value as $selId => $val) {
1598 if ($val) {
1599 $selectedValues[] = $selId;
1600 }
1601 }
1602 if (!empty($selectedValues)) {
1603 $value = CRM_Core_DAO::VALUE_SEPARATOR . implode(CRM_Core_DAO::VALUE_SEPARATOR,
1604 $selectedValues
1605 ) . CRM_Core_DAO::VALUE_SEPARATOR;
1606 }
1607 else {
1608 $value = '';
1609 }
1610 }
1611 }
1612 }
1613
1614 if ($customFields[$customFieldId]['html_type'] == 'Multi-Select' ||
1615 $customFields[$customFieldId]['html_type'] == 'AdvMulti-Select'
1616 ) {
1617 if ($value) {
1618 // Note that only during merge this is not an array,
1619 // and you can directly use value, CRM-4385
1620 if (is_array($value)) {
1621 $value = CRM_Core_DAO::VALUE_SEPARATOR . implode(CRM_Core_DAO::VALUE_SEPARATOR,
1622 array_values($value)
1623 ) . CRM_Core_DAO::VALUE_SEPARATOR;
1624 }
1625 }
1626 else {
1627 $value = '';
1628 }
1629 }
1630
1631 if (($customFields[$customFieldId]['html_type'] == 'Multi-Select' ||
1632 $customFields[$customFieldId]['html_type'] == 'AdvMulti-Select' ||
1633 $customFields[$customFieldId]['html_type'] == 'CheckBox'
1634 ) &&
1635 $customFields[$customFieldId]['data_type'] == 'String' &&
1636 !empty($customFields[$customFieldId]['text_length']) &&
1637 !empty($value)
1638 ) {
1639 // lets make sure that value is less than the length, else we'll
1640 // be losing some data, CRM-7481
1641 if (strlen($value) >= $customFields[$customFieldId]['text_length']) {
1642 // need to do a few things here
1643
1644 // 1. lets find a new length
1645 $newLength = $customFields[$customFieldId]['text_length'];
1646 $minLength = strlen($value);
1647 while ($newLength < $minLength) {
1648 $newLength = $newLength * 2;
1649 }
1650
1651 // set the custom field meta data to have a length larger than value
1652 // alter the custom value table column to match this length
1653 CRM_Core_BAO_SchemaHandler::alterFieldLength($customFieldId, $tableName, $columnName, $newLength);
1654 }
1655 }
1656
1657 $date = NULL;
1658 if ($customFields[$customFieldId]['data_type'] == 'Date') {
1659 if (!CRM_Utils_System::isNull($value)) {
1660 $format = $customFields[$customFieldId]['date_format'];
1661 $date = CRM_Utils_Date::processDate($value, NULL, FALSE, 'YmdHis', $format);
1662 }
1663 $value = $date;
1664 }
1665
1666 if ($customFields[$customFieldId]['data_type'] == 'Float' ||
1667 $customFields[$customFieldId]['data_type'] == 'Money'
1668 ) {
1669 if (!$value) {
1670 $value = 0;
1671 }
1672
1673 if ($customFields[$customFieldId]['data_type'] == 'Money') {
1674 $value = CRM_Utils_Rule::cleanMoney($value);
1675 }
1676 }
1677
1678 if (($customFields[$customFieldId]['data_type'] == 'StateProvince' ||
1679 $customFields[$customFieldId]['data_type'] == 'Country'
1680 ) &&
1681 empty($value)
1682 ) {
1683 // CRM-3415
1684 $value = 0;
1685 }
1686
1687 $fileId = NULL;
1688
1689 if ($customFields[$customFieldId]['data_type'] == 'File') {
1690 if (empty($value)) {
1691 return;
1692 }
1693
1694 $config = CRM_Core_Config::singleton();
1695
1696 $fName = $value['name'];
1697 $mimeType = $value['type'];
1698
1699 $filename = pathinfo($fName, PATHINFO_BASENAME);
1700
1701 // rename this file to go into the secure directory
1702 if (!rename($fName, $config->customFileUploadDir . $filename)) {
1703 CRM_Core_Error::statusBounce(ts('Could not move custom file to custom upload directory'));
6a488035
TO
1704 }
1705
1706 if ($customValueId) {
1707 $query = "
1708SELECT $columnName
1709 FROM $tableName
1710 WHERE id = %1";
1711 $params = array(1 => array($customValueId, 'Integer'));
1712 $fileId = CRM_Core_DAO::singleValueQuery($query, $params);
1713 }
1714
1715 $fileDAO = new CRM_Core_DAO_File();
1716
1717 if ($fileId) {
1718 $fileDAO->id = $fileId;
1719 }
1720
1721 $fileDAO->uri = $filename;
1722 $fileDAO->mime_type = $mimeType;
1723 $fileDAO->upload_date = date('Ymdhis');
1724 $fileDAO->save();
1725 $fileId = $fileDAO->id;
1726 $value = $filename;
1727 }
1728
1729 if (!is_array($customFormatted)) {
1730 $customFormatted = array();
1731 }
1732
1733 if (!array_key_exists($customFieldId, $customFormatted)) {
1734 $customFormatted[$customFieldId] = array();
1735 }
1736
1737 $index = -1;
1738 if ($customValueId) {
1739 $index = $customValueId;
1740 }
1741
1742 if (!array_key_exists($index, $customFormatted[$customFieldId])) {
1743 $customFormatted[$customFieldId][$index] = array();
1744 }
1745 $customFormatted[$customFieldId][$index] = array(
1746 'id' => $customValueId > 0 ? $customValueId : NULL,
1747 'value' => $value,
1748 'type' => $customFields[$customFieldId]['data_type'],
1749 'custom_field_id' => $customFieldId,
1750 'custom_group_id' => $groupID,
1751 'table_name' => $tableName,
1752 'column_name' => $columnName,
1753 'file_id' => $fileId,
1754 'is_multiple' => $customFields[$customFieldId]['is_multiple'],
1755 );
1756
1757 //we need to sort so that custom fields are created in the order of entry
1758 krsort($customFormatted[$customFieldId]);
1759 return $customFormatted;
1760 }
1761
b5c2afd0
EM
1762 /**
1763 * @param $params
1764 *
1765 * @return array
1766 */
6a488035
TO
1767 static function &defaultCustomTableSchema(&$params) {
1768 // add the id and extends_id
1769 $table = array(
1770 'name' => $params['name'],
1771 'is_multiple' => $params['is_multiple'],
1772 'attributes' => "ENGINE=InnoDB DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci",
1773 'fields' => array(
1774 array(
1775 'name' => 'id',
1776 'type' => 'int unsigned',
1777 'primary' => TRUE,
1778 'required' => TRUE,
1779 'attributes' => 'AUTO_INCREMENT',
1780 'comment' => 'Default MySQL primary key',
1781 ),
1782 array(
1783 'name' => 'entity_id',
1784 'type' => 'int unsigned',
1785 'required' => TRUE,
1786 'comment' => 'Table that this extends',
1787 'fk_table_name' => $params['extends_name'],
1788 'fk_field_name' => 'id',
1789 'fk_attributes' => 'ON DELETE CASCADE',
1790 ),
1791 ),
1792 );
1793
1794 if (!$params['is_multiple']) {
1795 $table['indexes'] = array(
1796 array(
1797 'unique' => TRUE,
1798 'field_name_1' => 'entity_id',
1799 ),
1800 );
1801 }
1802 return $table;
1803 }
1804
b5c2afd0
EM
1805 /**
1806 * @param $field
1807 * @param $operation
1808 * @param bool $indexExist
1809 * @param bool $triggerRebuild
1810 */
6a488035
TO
1811 static function createField($field, $operation, $indexExist = FALSE, $triggerRebuild = TRUE) {
1812 $tableName = CRM_Core_DAO::getFieldValue(
1813 'CRM_Core_DAO_CustomGroup',
1814 $field->custom_group_id,
1815 'table_name'
1816 );
1817
1818 $params = array(
1819 'table_name' => $tableName,
1820 'operation' => $operation,
1821 'name' => $field->column_name,
1822 'type' => CRM_Core_BAO_CustomValueTable::fieldToSQLType(
1823 $field->data_type,
1824 $field->text_length
1825 ),
1826 'required' => $field->is_required,
1827 'searchable' => $field->is_searchable,
1828 );
1829
1830 if ($operation == 'delete') {
1831 $fkName = "{$tableName}_{$field->column_name}";
1832 if (strlen($fkName) >= 48) {
1833 $fkName = substr($fkName, 0, 32) . '_' . substr(md5($fkName), 0, 16);
1834 }
1835 $params['fkName'] = $fkName;
1836 }
1837 if ($field->data_type == 'Country' && $field->html_type == 'Select Country') {
1838 $params['fk_table_name'] = 'civicrm_country';
1839 $params['fk_field_name'] = 'id';
1840 $params['fk_attributes'] = 'ON DELETE SET NULL';
1841 }
1842 elseif ($field->data_type == 'Country' && $field->html_type == 'Multi-Select Country') {
1843 $params['type'] = 'varchar(255)';
1844 }
1845 elseif ($field->data_type == 'StateProvince' && $field->html_type == 'Select State/Province') {
1846 $params['fk_table_name'] = 'civicrm_state_province';
1847 $params['fk_field_name'] = 'id';
1848 $params['fk_attributes'] = 'ON DELETE SET NULL';
1849 }
1850 elseif ($field->data_type == 'StateProvince' && $field->html_type == 'Multi-Select State/Province') {
1851 $params['type'] = 'varchar(255)';
1852 }
1853 elseif ($field->data_type == 'File') {
1854 $params['fk_table_name'] = 'civicrm_file';
1855 $params['fk_field_name'] = 'id';
1856 $params['fk_attributes'] = 'ON DELETE SET NULL';
1857 }
1858 elseif ($field->data_type == 'ContactReference') {
1859 $params['fk_table_name'] = 'civicrm_contact';
1860 $params['fk_field_name'] = 'id';
1861 $params['fk_attributes'] = 'ON DELETE SET NULL';
1862 }
1863 if ($field->default_value) {
1864 $params['default'] = "'{$field->default_value}'";
1865 }
1866
1867 CRM_Core_BAO_SchemaHandler::alterFieldSQL($params, $indexExist, $triggerRebuild);
1868 }
1869
1870 /**
1871 * Determine whether it would be safe to move a field
1872 *
1873 * @param int $fieldID FK to civicrm_custom_field
1874 * @param int $newGroupID FK to civicrm_custom_group
1875 *
1876 * @return array(
1877 string) or TRUE
1878 */
1879 static function _moveFieldValidate($fieldID, $newGroupID) {
1880 $errors = array();
1881
1882 $field = new CRM_Core_DAO_CustomField();
1883 $field->id = $fieldID;
1884 if (!$field->find(TRUE)) {
1885 $errors['fieldID'] = 'Invalid ID for custom field';
1886 return $errors;
1887 }
1888
1889 $oldGroup = new CRM_Core_DAO_CustomGroup();
1890 $oldGroup->id = $field->custom_group_id;
1891 if (!$oldGroup->find(TRUE)) {
1892 $errors['fieldID'] = 'Invalid ID for old custom group';
1893 return $errors;
1894 }
1895
1896 $newGroup = new CRM_Core_DAO_CustomGroup();
1897 $newGroup->id = $newGroupID;
1898 if (!$newGroup->find(TRUE)) {
1899 $errors['newGroupID'] = 'Invalid ID for new custom group';
1900 return $errors;
1901 }
1902
1903 $query = "
1904SELECT b.id
1905FROM civicrm_custom_field a
1906INNER JOIN civicrm_custom_field b
1907WHERE a.id = %1
1908AND a.label = b.label
1909AND b.custom_group_id = %2
1910";
1911 $params = array(
1912 1 => array($field->id, 'Integer'),
1913 2 => array($newGroup->id, 'Integer'),
1914 );
1915 $count = CRM_Core_DAO::singleValueQuery($query, $params);
1916 if ($count > 0) {
1917 $errors['newGroupID'] = ts('A field of the same label exists in the destination group');
1918 }
1919
1920 $tableName = $oldGroup->table_name;
1921 $columnName = $field->column_name;
1922
1923 $query = "
1924SELECT count(*)
1925FROM $tableName
1926WHERE $columnName is not null
1927";
1928 $count = CRM_Core_DAO::singleValueQuery($query,
1929 CRM_Core_DAO::$_nullArray
1930 );
1931 if ($count > 0) {
1932 $query = "
1933SELECT extends
1934FROM civicrm_custom_group
1935WHERE id IN ( %1, %2 )
1936";
1937 $params = array(1 => array($oldGroup->id, 'Integer'),
1938 2 => array($newGroup->id, 'Integer'),
1939 );
1940
1941 $dao = CRM_Core_DAO::executeQuery($query, $params);
1942 $extends = array();
1943 while ($dao->fetch()) {
1944 $extends[] = $dao->extends;
1945 }
1946 if ($extends[0] != $extends[1]) {
1947 $errors['newGroupID'] = ts('The destination group extends a different entity type.');
1948 }
1949 }
1950
1951 return empty($errors) ? TRUE : $errors;
1952 }
1953
1954 /**
1955 * Move a custom data field from one group (table) to another
1956 *
1957 * @param int $fieldID FK to civicrm_custom_field
1958 * @param int $newGroupID FK to civicrm_custom_group
1959 *
1960 * @return void
1961 */
1962 static function moveField($fieldID, $newGroupID) {
1963 $validation = self::_moveFieldValidate($fieldID, $newGroupID);
1964 if (TRUE !== $validation) {
1965 CRM_Core_Error::fatal(implode(' ', $validation));
1966 }
1967 $field = new CRM_Core_DAO_CustomField();
1968 $field->id = $fieldID;
1969 $field->find(TRUE);
1970
1971 $newGroup = new CRM_Core_DAO_CustomGroup();
1972 $newGroup->id = $newGroupID;
1973 $newGroup->find(TRUE);
1974
1975 $oldGroup = new CRM_Core_DAO_CustomGroup();
1976 $oldGroup->id = $field->custom_group_id;
1977 $oldGroup->find(TRUE);
1978
1979 $add = clone$field;
1980 $add->custom_group_id = $newGroup->id;
1981 self::createField($add, 'add');
1982
1983 $sql = "INSERT INTO {$newGroup->table_name} (entity_id, {$field->column_name})
1984 SELECT entity_id, {$field->column_name} FROM {$oldGroup->table_name}
1985 ON DUPLICATE KEY UPDATE {$field->column_name} = {$oldGroup->table_name}.{$field->column_name}
1986 ";
1987 CRM_Core_DAO::executeQuery($sql);
1988
1989 $del = clone$field;
1990 $del->custom_group_id = $oldGroup->id;
1991 self::createField($del, 'delete');
1992
1993 $add->save();
1994
1995 CRM_Utils_System::flushCache();
1996 }
1997
1998 /**
1999 * Get the database table name and column name for a custom field
2000 *
2001 * @param int $fieldID - the fieldID of the custom field
2002 * @param boolean $force - force the sql to be run again (primarily used for tests)
2003 *
2004 * @return array - fatal is fieldID does not exists, else array of tableName, columnName
2005 * @static
2006 * @public
2007 */
2008 static function getTableColumnGroup($fieldID, $force = FALSE) {
2009 $cacheKey = "CRM_Core_DAO_CustomField_CustomGroup_TableColumn_{$fieldID}";
2010 $cache = CRM_Utils_Cache::singleton();
2011 $fieldValues = $cache->get($cacheKey);
2012 if (empty($fieldValues) || $force) {
2013 $query = "
2014SELECT cg.table_name, cf.column_name, cg.id
2015FROM civicrm_custom_group cg,
2016 civicrm_custom_field cf
2017WHERE cf.custom_group_id = cg.id
2018AND cf.id = %1";
2019 $params = array(1 => array($fieldID, 'Integer'));
2020 $dao = CRM_Core_DAO::executeQuery($query, $params);
2021
2022 if (!$dao->fetch()) {
2023 CRM_Core_Error::fatal();
2024 }
2025 $dao->free();
2026 $fieldValues = array($dao->table_name, $dao->column_name, $dao->id);
2027 $cache->set($cacheKey, $fieldValues);
2028 }
2029 return $fieldValues;
2030 }
2031
2032 /**
2033 * Function to get custom option groups
2034 *
2035 * @params array $includeFieldIds ids of custom fields for which
2036 * option groups must be included.
2037 *
2038 * Currently this is required in the cases where option groups are to be included
2039 * for inactive fields : CRM-5369
2040 *
2041 * @access public
2042 *
77b97be7
EM
2043 * @param null $includeFieldIds
2044 *
2045 * @return mixed $customOptionGroup@static
6a488035
TO
2046 */
2047 public static function &customOptionGroup($includeFieldIds = NULL) {
2048 static $customOptionGroup = NULL;
2049
2050 $cacheKey = (empty($includeFieldIds)) ? 'onlyActive' : 'force';
2051 if ($cacheKey == 'force') {
2052 $customOptionGroup[$cacheKey] = NULL;
2053 }
2054
a7488080 2055 if (empty($customOptionGroup[$cacheKey])) {
6a488035
TO
2056 $whereClause = '( g.is_active = 1 AND f.is_active = 1 )';
2057
2058 //support for single as well as array format.
2059 if (!empty($includeFieldIds)) {
2060 if (is_array($includeFieldIds)) {
2061 $includeFieldIds = implode(',', $includeFieldIds);
2062 }
2063 $whereClause .= "OR f.id IN ( $includeFieldIds )";
2064 }
2065
2066 $query = "
2067 SELECT g.id, g.title
2068 FROM civicrm_option_group g
2069INNER JOIN civicrm_custom_field f ON ( g.id = f.option_group_id )
2070 WHERE {$whereClause}";
2071
2072 $dao = CRM_Core_DAO::executeQuery($query);
2073 while ($dao->fetch()) {
2074 $customOptionGroup[$cacheKey][$dao->id] = $dao->title;
2075 }
2076 }
2077
2078 return $customOptionGroup[$cacheKey];
2079 }
2080
2081 /**
2082 * Function to fix orphan groups
2083 *
2084 * @params int $customFieldId custom field id
2085 * @params int $optionGroupId option group id
2086 *
2087 * @access public
2088 *
77b97be7
EM
2089 * @param $customFieldId
2090 * @param $optionGroupId
2091 *
6a488035
TO
2092 * @return void
2093 * @static
2094 */
2095 static function fixOptionGroups($customFieldId, $optionGroupId) {
2096 // check if option group belongs to any custom Field else delete
2097 // get the current option group
2098 $currentOptionGroupId = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_CustomField',
2099 $customFieldId,
2100 'option_group_id'
2101 );
2102 // get the updated option group
2103 // if both are same return
2104 if ($currentOptionGroupId == $optionGroupId) {
2105 return;
2106 }
2107
2108 // check if option group is related to any other field
2109 self::checkOptionGroup($currentOptionGroupId);
2110 }
2111
2112 /**
2113 * Function to check if option group is related to more than one
2114 * custom field
2115 *
2116 * @params int $optionGroupId option group id
2117 *
77b97be7
EM
2118 * @param $optionGroupId
2119 *
2120 * @return void
2121 @static
6a488035
TO
2122 */
2123 static function checkOptionGroup($optionGroupId) {
2124 $query = "
2125SELECT count(*)
2126FROM civicrm_custom_field
2127WHERE option_group_id = {$optionGroupId}";
2128
2129 $count = CRM_Core_DAO::singleValueQuery($query);
2130
2131 if ($count < 2) {
2132 //delete the option group
2133 CRM_Core_BAO_OptionGroup::del($optionGroupId);
2134 }
2135 }
2136
b5c2afd0
EM
2137 /**
2138 * @param $optionGroupId
2139 * @param $htmlType
2140 *
2141 * @return null|string
2142 */
6a488035
TO
2143 static function getOptionGroupDefault($optionGroupId, $htmlType) {
2144 $query = "
2145SELECT default_value, html_type
2146FROM civicrm_custom_field
2147WHERE option_group_id = {$optionGroupId}
2148AND default_value IS NOT NULL
2149ORDER BY html_type";
2150
2151 $dao = CRM_Core_DAO::executeQuery($query);
2152 $defaultValue = NULL;
2153 $defaultHTMLType = NULL;
2154 while ($dao->fetch()) {
2155 if ($dao->html_type == $htmlType) {
2156 return $dao->default_value;
2157 }
2158 if ($defaultValue == NULL) {
2159 $defaultValue = $dao->default_value;
2160 $defaultHTMLType = $dao->html_type;
2161 }
2162 }
2163
2164 // some conversions are needed if either the old or new has a html type which has potential
2165 // multiple default values.
2166 if (($htmlType == 'CheckBox' || $htmlType == 'Multi-Select') &&
2167 ($defaultHTMLType != 'CheckBox' && $defaultHTMLType != 'Multi-Select')
2168 ) {
2169 $defaultValue = CRM_Core_DAO::VALUE_SEPARATOR . $defaultValue . CRM_Core_DAO::VALUE_SEPARATOR;
2170 }
2171 elseif (($defaultHTMLType == 'CheckBox' || $defaultHTMLType == 'Multi-Select') &&
2172 ($htmlType != 'CheckBox' && $htmlType != 'Multi-Select')
2173 ) {
2174 $defaultValue = substr($defaultValue, 1, -1);
2175 $values = explode(CRM_Core_DAO::VALUE_SEPARATOR,
2176 substr($defaultValue, 1, -1)
2177 );
2178 $defaultValue = $values[0];
2179 }
2180
2181 return $defaultValue;
2182 }
2183
b5c2afd0
EM
2184 /**
2185 * @param $params
2186 * @param $customFields
2187 * @param $entityID
2188 * @param $customFieldExtends
2189 * @param bool $inline
2190 *
2191 * @return array
2192 */
6a488035
TO
2193 static function postProcess(&$params,
2194 &$customFields,
2195 $entityID,
2196 $customFieldExtends,
2197 $inline = FALSE
2198 ) {
2199 $customData = array();
2200
2201 foreach ($params as $key => $value) {
2202 if ($customFieldInfo = CRM_Core_BAO_CustomField::getKeyID($key, TRUE)) {
2203
2204 // for autocomplete transfer hidden value instead of label
2205 if ($params[$key] && isset($params[$key . '_id'])) {
2206 $value = $params[$key . '_id'];
2207 }
2208
2209 // we need to append time with date
2210 if ($params[$key] && isset($params[$key . '_time'])) {
2211 $value .= ' ' . $params[$key . '_time'];
2212 }
2213
2214 CRM_Core_BAO_CustomField::formatCustomField($customFieldInfo[0],
2215 $customData,
2216 $value,
2217 $customFieldExtends,
2218 $customFieldInfo[1],
2219 $entityID,
2220 $inline
2221 );
2222 }
2223 }
2224 return $customData;
2225 }
2226
b5c2afd0
EM
2227 /**
2228 * @param $field
2229 * @param $options
2230 *
2231 * @throws Exception
2232 */
6a488035 2233 static function buildOption($field, &$options) {
deceed83
CW
2234 // Fixme - adding anything but options to the $options array is a bad idea
2235 // What if an option had the key 'attributes'?
6a488035
TO
2236 $options['attributes'] = array(
2237 'label' => $field['label'],
2238 'data_type' => $field['data_type'],
2239 'html_type' => $field['html_type'],
2240 );
2241
2242 $optionGroupID = NULL;
2243 if (($field['html_type'] == 'CheckBox' ||
2244 $field['html_type'] == 'Radio' ||
2245 $field['html_type'] == 'Select' ||
2246 $field['html_type'] == 'AdvMulti-Select' ||
2247 $field['html_type'] == 'Multi-Select' ||
2248 ($field['html_type'] == 'Autocomplete-Select' && $field['data_type'] != 'ContactReference')
2249 )) {
2250 if ($field['option_group_id']) {
2251 $optionGroupID = $field['option_group_id'];
2252 }
2253 elseif ($field['data_type'] != 'Boolean') {
2254 CRM_Core_Error::fatal();
2255 }
2256 }
2257
2258 // build the cache for custom values with options (label => value)
2259 if ($optionGroupID != NULL) {
2260 $query = "
2261SELECT label, value
2262 FROM civicrm_option_value
2263 WHERE option_group_id = $optionGroupID
2264";
2265
2266 $dao = CRM_Core_DAO::executeQuery($query);
2267 while ($dao->fetch()) {
2268 if ($field['data_type'] == 'Int' || $field['data_type'] == 'Float') {
2269 $num = round($dao->value, 2);
2270 $options["$num"] = $dao->label;
2271 }
2272 else {
2273 $options[$dao->value] = $dao->label;
2274 }
2275 }
2276
2277 CRM_Utils_Hook::customFieldOptions($field['id'], $options);
2278 }
2279 }
2280
b5c2afd0
EM
2281 /**
2282 * @param $fieldLabel
2283 * @param null $groupTitle
2284 *
2285 * @return null
2286 */
6a488035
TO
2287 static function getCustomFieldID($fieldLabel, $groupTitle = NULL) {
2288 $params = array(1 => array($fieldLabel, 'String'));
2289 if ($groupTitle) {
2290 $params[2] = array($groupTitle, 'String');
2291 $sql = "
2292SELECT f.id
2293FROM civicrm_custom_field f
2294INNER JOIN civicrm_custom_group g ON f.custom_group_id = g.id
2295WHERE ( f.label = %1 OR f.name = %1 )
2296AND ( g.title = %2 OR g.name = %2 )
2297";
2298 }
2299 else {
2300 $sql = "
2301SELECT f.id
2302FROM civicrm_custom_field f
2303WHERE ( f.label = %1 OR f.name = %1 )
2304";
2305 }
2306
2307 $dao = CRM_Core_DAO::executeQuery($sql, $params);
2308 if ($dao->fetch() &&
2309 $dao->N == 1
2310 ) {
2311 return $dao->id;
2312 }
2313 else {
2314 return NULL;
2315 }
2316 }
2317
2318 /**
2319 * Given ID of a custom field, return its name as well as the name of the custom group it belongs to.
2320 *
2321 */
2322 static function getNameFromID($ids) {
2323 if (is_array($ids)) {
2324 $ids = implode(',', $ids);
2325 }
2326 $sql = "
2327SELECT f.id, f.name AS field_name, f.label AS field_label, g.name AS group_name, g.title AS group_title
2328FROM civicrm_custom_field f
2329INNER JOIN civicrm_custom_group g ON f.custom_group_id = g.id
2330WHERE f.id IN ($ids)";
2331
2332
2333 $dao = CRM_Core_DAO::executeQuery($sql);
2334 $result = array();
2335 while ($dao->fetch()) {
2336 $result[$dao->id] = array(
2337 'field_name' => $dao->field_name,
2338 'field_label' => $dao->field_label,
2339 'group_name' => $dao->group_name,
2340 'group_title' => $dao->group_title,
2341 );
2342 }
2343 return $result;
2344 }
2345
2346 /**
2347 * Validate custom data.
2348 *
2349 * @param array $params custom data submitted.
2350 * ie array( 'custom_1' => 'validate me' );
2351 *
2352 * @return array $errors validation errors.
2353 * @static
2354 */
2355 static function validateCustomData($params) {
2356 $errors = array();
2357 if (!is_array($params) || empty($params)) {
2358 return $errors;
2359 }
2360
2361
2362 //pick up profile fields.
2363 $profileFields = array();
2364 $ufGroupId = CRM_Utils_Array::value('ufGroupId', $params);
2365 if ($ufGroupId) {
2366 $profileFields = CRM_Core_BAO_UFGroup::getFields($ufGroupId,
2367 FALSE,
2368 CRM_Core_Action::VIEW
2369 );
2370 }
2371
2372 //lets start w/ params.
2373 foreach ($params as $key => $value) {
2374 $customFieldID = self::getKeyID($key);
2375 if (!$customFieldID) {
2376 continue;
2377 }
2378
2379 //load the structural info for given field.
2380 $field = new CRM_Core_DAO_CustomField();
2381 $field->id = $customFieldID;
2382 if (!$field->find(TRUE)) {
2383 continue;
2384 }
2385 $dataType = $field->data_type;
2386
2387 $profileField = CRM_Utils_Array::value($key, $profileFields, array());
2388 $fieldTitle = CRM_Utils_Array::value('title', $profileField);
2389 $isRequired = CRM_Utils_Array::value('is_required', $profileField);
2390 if (!$fieldTitle) {
2391 $fieldTitle = $field->label;
2392 }
2393
2394 //no need to validate.
2395 if (CRM_Utils_System::isNull($value) && !$isRequired) {
2396 continue;
2397 }
2398
2399 //lets validate first for required field.
2400 if ($isRequired && CRM_Utils_System::isNull($value)) {
2401 $errors[$key] = ts('%1 is a required field.', array(1 => $fieldTitle));
2402 continue;
2403 }
2404
2405 //now time to take care of custom field form rules.
2406 $ruleName = $errorMsg = NULL;
2407 switch ($dataType) {
2408 case 'Int':
2409 $ruleName = 'integer';
2410 $errorMsg = ts('%1 must be an integer (whole number).',
2411 array(1 => $fieldTitle)
2412 );
2413 break;
2414
2415 case 'Money':
2416 $ruleName = 'money';
2417 $errorMsg = ts('%1 must in proper money format. (decimal point/comma/space is allowed).',
2418 array(1 => $fieldTitle)
2419 );
2420 break;
2421
2422 case 'Float':
2423 $ruleName = 'numeric';
2424 $errorMsg = ts('%1 must be a number (with or without decimal point).',
2425 array(1 => $fieldTitle)
2426 );
2427 break;
2428
2429 case 'Link':
2430 $ruleName = 'wikiURL';
2431 $errorMsg = ts('%1 must be valid Website.',
2432 array(1 => $fieldTitle)
2433 );
2434 break;
2435 }
2436
2437 if ($ruleName && !CRM_Utils_System::isNull($value)) {
2438 $valid = FALSE;
2439 $funName = "CRM_Utils_Rule::{$ruleName}";
2440 if (is_callable($funName)) {
2441 $valid = call_user_func($funName, $value);
2442 }
2443 if (!$valid) {
2444 $errors[$key] = $errorMsg;
2445 }
2446 }
2447 }
2448
2449 return $errors;
2450 }
2451
ffd93213
EM
2452 /**
2453 * @param $customId
2454 *
2455 * @return bool
2456 */
6a488035
TO
2457 static function isMultiRecordField($customId) {
2458 $isMultipleWithGid = FALSE;
2459 if (!is_numeric($customId)) {
2460 $customId = self::getKeyID($customId);
2461 }
2462 if (is_numeric($customId)) {
2463 $sql = "SELECT cg.id cgId
2464 FROM civicrm_custom_group cg
2465 INNER JOIN civicrm_custom_field cf
2466 ON cg.id = cf.custom_group_id
2467WHERE cf.id = %1 AND cg.is_multiple = 1";
2468 $params[1] = array($customId, 'Integer');
2469 $dao = CRM_Core_DAO::executeQuery($sql, $params);
2470 if ($dao->fetch()) {
2471 if ($dao->cgId) {
2472 $isMultipleWithGid = $dao->cgId;
2473 }
2474 }
2475 }
2476
2477 return $isMultipleWithGid;
2478 }
3130209f
CW
2479
2480 /**
2481 * Does this field store a serialized string?
2482 * @param CRM_Core_DAO_CustomField|array $field
2483 * @return bool
2484 */
2485 static function isSerialized($field) {
2486 // Fields retrieved via api are an array, or from the dao are an object. We'll accept either.
2487 $field = (array) $field;
2488 // FIXME: Currently the only way to know if data is serialized is by looking at the html_type. It would be cleaner to decouple this.
2489 return ($field['html_type'] == 'CheckBox' || strpos($field['html_type'], 'Multi') !== FALSE);
2490 }
6a488035
TO
2491}
2492