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