CRM-16701 - worked around issue creating saved search.
[civicrm-core.git] / api / v3 / UFField.php
CommitLineData
6a488035 1<?php
6a488035
TO
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
6a488035 5 +--------------------------------------------------------------------+
e7112fa7 6 | Copyright CiviCRM LLC (c) 2004-2015 |
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/**
c28e1768 29 * This api exposes CiviCRM profile field.
6a488035
TO
30 *
31 * @package CiviCRM_APIv3
6a488035
TO
32 */
33
6a488035
TO
34/**
35 * Defines 'uf field' within a group.
36 *
16b10e64 37 * @param array $params
2e66abf8 38 * Array per getfields metadata.
6a488035 39 *
7e42d294 40 * @throws API_Exception
7e42d294 41 *
a6c01b45 42 * @return array
72b3a70c 43 * Newly created $ufFieldArray
6a488035
TO
44 */
45function civicrm_api3_uf_field_create($params) {
46 civicrm_api3_verify_one_mandatory($params, NULL, array('field_name', 'uf_group_id'));
47 $groupId = CRM_Utils_Array::value('uf_group_id', $params);
48 if ((int) $groupId < 1) {
3f1a97cd 49 throw new API_Exception('Params must be a field_name-carrying array and a positive integer.');
6a488035
TO
50 }
51
52 $field_type = CRM_Utils_Array::value('field_type', $params);
53 $field_name = CRM_Utils_Array::value('field_name', $params);
1a228b4c 54 $location_type_id = CRM_Utils_Array::value('location_type_id', $params, CRM_Utils_Array::value('website_type_id', $params));
6a488035
TO
55 $phone_type = CRM_Utils_Array::value('phone_type_id', $params, CRM_Utils_Array::value('phone_type', $params));
56
28a04ea9 57 if (!CRM_Core_BAO_UFField::isValidFieldName($field_name)) {
3f1a97cd 58 throw new API_Exception('The field_name is not valid');
6a488035
TO
59 }
60 $params['field_name'] = array($field_type, $field_name, $location_type_id, $phone_type);
61
62 if (!(CRM_Utils_Array::value('group_id', $params))) {
63 $params['group_id'] = $groupId;
64 }
65
7e42d294 66 $ids = $ufFieldArray = array();
6a488035
TO
67 $ids['uf_group'] = $groupId;
68
69 $fieldId = CRM_Utils_Array::value('id', $params);
70 if (!empty($fieldId)) {
575e044f 71 $UFField = new CRM_Core_BAO_UFField();
6a488035
TO
72 $UFField->id = $fieldId;
73 if ($UFField->find(TRUE)) {
74 $ids['uf_group'] = $UFField->uf_group_id;
75 if (!(CRM_Utils_Array::value('group_id', $params))) {
76 // this copied here from previous api function - not sure if required
77 $params['group_id'] = $UFField->uf_group_id;
78 }
79 }
80 else {
3f1a97cd 81 throw new API_Exception("there is no field for this fieldId");
6a488035
TO
82 }
83 $ids['uf_field'] = $fieldId;
84 }
85
86 if (CRM_Core_BAO_UFField::duplicateField($params, $ids)) {
3f1a97cd 87 throw new API_Exception("The field was not added. It already exists in this profile.");
6a488035 88 }
7e42d294 89 //@todo why is this even optional? Surely weight should just be 'managed' ??
6a488035
TO
90 if (CRM_Utils_Array::value('option.autoweight', $params, TRUE)) {
91 $params['weight'] = CRM_Core_BAO_UFField::autoWeight($params);
92 }
93 $ufField = CRM_Core_BAO_UFField::add($params, $ids);
94
95 $fieldsType = CRM_Core_BAO_UFGroup::calculateGroupType($groupId, TRUE);
96 CRM_Core_BAO_UFGroup::updateGroupTypes($groupId, $fieldsType);
97
98 _civicrm_api3_object_to_array($ufField, $ufFieldArray[$ufField->id]);
7e42d294 99 civicrm_api3('profile', 'getfields', array('cache_clear' => TRUE));
6a488035
TO
100 return civicrm_api3_create_success($ufFieldArray, $params);
101}
102
103/**
9d32e6f7 104 * Adjust metadata for civicrm_uf_field create.
6a488035 105 *
c490a46a 106 * @param array $params
6a488035
TO
107 */
108function _civicrm_api3_uf_field_create_spec(&$params) {
109 $params['option.autoweight'] = array(
b2ed8e73
CW
110 'title' => "Auto Weight",
111 'description' => "Automatically adjust weights in UFGroup to align with UFField",
7e42d294 112 'type' => CRM_Utils_Type::T_BOOLEAN,
113 'api.default' => TRUE,
6a488035 114 );
6616c349 115 $params['is_active']['api.default'] = TRUE;
6a488035
TO
116}
117
118/**
22242c87 119 * Returns array of uf groups (profiles) matching a set of one or more group properties.
6a488035 120 *
cf470720 121 * @param array $params
9d32e6f7 122 * Array per getfields metadata.
6a488035 123 *
a6c01b45 124 * @return array
6a488035
TO
125 */
126function civicrm_api3_uf_field_get($params) {
127 return _civicrm_api3_basic_get('CRM_Core_BAO_UFField', $params);
128}
129
130/**
9d32e6f7 131 * Delete uf field.
6a488035 132 *
c490a46a 133 * @param array $params
7e42d294 134 *
135 * @throws API_Exception
6a488035 136 *
72b3a70c 137 * @return array
6a488035
TO
138 */
139function civicrm_api3_uf_field_delete($params) {
140 $fieldId = $params['id'];
141
142 $ufGroupId = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_UFField', $fieldId, 'uf_group_id');
143 if (!$ufGroupId) {
3f1a97cd 144 throw new API_Exception('Invalid value for field_id.');
6a488035
TO
145 }
146
147 $result = CRM_Core_BAO_UFField::del($fieldId);
148
149 $fieldsType = CRM_Core_BAO_UFGroup::calculateGroupType($ufGroupId, TRUE);
150 CRM_Core_BAO_UFGroup::updateGroupTypes($ufGroupId, $fieldsType);
151
152 return civicrm_api3_create_success($result, $params);
153}
645ee340 154
7e42d294 155/**
22242c87
EM
156 * Field id accepted for backward compatibility - unset required on id.
157 *
d0997921 158 * @param array $params
6a488035
TO
159 */
160function _civicrm_api3_uf_field_delete_spec(&$params) {
161 // legacy support for field_id
162 $params['id']['api.aliases'] = array('field_id');
163}