Merge pull request #12006 from civicrm/5.1
[civicrm-core.git] / CRM / Core / BAO / CustomOption.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
6a488035 5 +--------------------------------------------------------------------+
8c9251b3 6 | Copyright CiviCRM LLC (c) 2004-2018 |
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 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
27
28/**
29 *
30 * @package CRM
8c9251b3 31 * @copyright CiviCRM LLC (c) 2004-2018
6a488035
TO
32 * $Id$
33 *
34 */
35
36/**
37 * Business objects for managing custom data options.
38 *
39 */
40class CRM_Core_BAO_CustomOption {
41
42 /**
fe482240 43 * Fetch object based on array of properties.
6a488035 44 *
6a0b768e
TO
45 * @param array $params
46 * (reference ) an assoc array of name/value pairs.
47 * @param array $defaults
48 * (reference ) an assoc array to hold the flattened values.
6a488035 49 *
16b10e64 50 * @return CRM_Core_BAO_CustomOption
6a488035 51 */
00be9182 52 public static function retrieve(&$params, &$defaults) {
6a488035
TO
53 $customOption = new CRM_Core_DAO_OptionValue();
54 $customOption->copyValues($params);
55 if ($customOption->find(TRUE)) {
56 CRM_Core_DAO::storeValues($customOption, $defaults);
57 return $customOption;
58 }
59 return NULL;
60 }
61
62 /**
fe482240 63 * Returns all active options ordered by weight for a given field.
6a488035 64 *
6a0b768e
TO
65 * @param int $fieldID
66 * Field whose options are needed.
317fceb4 67 * @param bool $inactiveNeeded Do we need inactive options ?.
6a0b768e 68 * Do we need inactive options ?.
6a488035 69 *
a6c01b45
CW
70 * @return array
71 * all active options for fieldId
6a488035 72 */
317fceb4 73 public static function getCustomOption(
6a488035
TO
74 $fieldID,
75 $inactiveNeeded = FALSE
76 ) {
77 $options = array();
78 if (!$fieldID) {
79 return $options;
80 }
81
b4fb2d23 82 $optionValues = CRM_Core_PseudoConstant::get('CRM_Core_BAO_CustomField', 'custom_' . $fieldID, array(), $inactiveNeeded ? 'get' : 'create');
6a488035 83
e525d6af 84 foreach ((array) $optionValues as $value => $label) {
b4fb2d23
CW
85 $options[] = array(
86 'label' => $label,
87 'value' => $value,
88 );
6a488035
TO
89 }
90
6a488035
TO
91 return $options;
92 }
93
57c9c217 94 /**
09b6d7cd 95 * Wrapper for ajax option selector.
57c9c217 96 *
97 * @param array $params
98 * Associated array for params record id.
99 *
100 * @return array
101 * associated array of option list
102 * -rp = rowcount
103 * -page= offset
104 */
105 static public function getOptionListSelector(&$params) {
57c9c217 106 $options = array();
107
09b6d7cd
CW
108 $field = CRM_Core_BAO_CustomField::getFieldObject($params['fid']);
109 $defVal = CRM_Utils_Array::explodePadded($field->default_value);
57c9c217 110
111 // format the params
112 $params['offset'] = ($params['page'] - 1) * $params['rp'];
113 $params['rowCount'] = $params['rp'];
57c9c217 114
09b6d7cd 115 if (!$field->option_group_id) {
57c9c217 116 return $options;
117 }
09b6d7cd 118 $queryParams = array(1 => array($field->option_group_id, 'Integer'));
57c9c217 119 $total = "SELECT COUNT(*) FROM civicrm_option_value WHERE option_group_id = %1";
120 $params['total'] = CRM_Core_DAO::singleValueQuery($total, $queryParams);
121
122 $limit = " LIMIT {$params['offset']}, {$params['rowCount']} ";
57c9c217 123 $orderBy = ' ORDER BY options.weight asc';
57c9c217 124
125 $query = "SELECT * FROM civicrm_option_value as options WHERE option_group_id = %1 {$orderBy} {$limit}";
126 $dao = CRM_Core_DAO::executeQuery($query, $queryParams);
127 $links = CRM_Custom_Page_Option::actionLinks();
128
46227b8d 129 $fields = array('id', 'label', 'value');
57c9c217 130 $config = CRM_Core_Config::singleton();
131 while ($dao->fetch()) {
132 $options[$dao->id] = array();
133 foreach ($fields as $k) {
134 $options[$dao->id][$k] = $dao->$k;
135 }
136 $action = array_sum(array_keys($links));
137 $class = 'crm-entity';
138 // update enable/disable links depending on custom_field properties.
139 if ($dao->is_active) {
140 $action -= CRM_Core_Action::ENABLE;
141 }
142 else {
143 $class .= ' disabled';
144 $action -= CRM_Core_Action::DISABLE;
145 }
09b6d7cd 146 if (in_array($field->html_type, array('CheckBox', 'AdvMulti-Select', 'Multi-Select'))) {
614ff00e 147 if (isset($defVal) && in_array($dao->value, $defVal)) {
57c9c217 148 $options[$dao->id]['is_default'] = '<img src="' . $config->resourceBase . 'i/check.gif" />';
149 }
150 else {
151 $options[$dao->id]['is_default'] = '';
152 }
153 }
154 else {
09b6d7cd 155 if ($field->default_value == $dao->value) {
57c9c217 156 $options[$dao->id]['is_default'] = '<img src="' . $config->resourceBase . 'i/check.gif" />';
157 }
158 else {
159 $options[$dao->id]['is_default'] = '';
160 }
161 }
4247b886 162 $options[$dao->id]['description'] = $dao->description;
57c9c217 163 $options[$dao->id]['class'] = $dao->id . ',' . $class;
09b6d7cd 164 $options[$dao->id]['is_active'] = empty($dao->is_active) ? ts('No') : ts('Yes');
57c9c217 165 $options[$dao->id]['links'] = CRM_Core_Action::formLink($links,
166 $action,
167 array(
168 'id' => $dao->id,
169 'fid' => $params['fid'],
170 'gid' => $params['gid'],
171 ),
172 ts('more'),
173 FALSE,
174 'customOption.row.actions',
175 'customOption',
176 $dao->id
177 );
178 }
57c9c217 179
180 return $options;
181 }
182
6a488035 183 /**
fe482240 184 * Delete Option.
6a488035 185 *
16b10e64
CW
186 * @param $optionId integer
187 * option id
6a488035 188 *
6a488035 189 */
00be9182 190 public static function del($optionId) {
6a488035
TO
191 // get the customFieldID
192 $query = "
193SELECT f.id as id, f.data_type as dataType
194FROM civicrm_option_value v,
195 civicrm_option_group g,
196 civicrm_custom_field f
197WHERE v.id = %1
198AND g.id = f.option_group_id
199AND g.id = v.option_group_id";
200 $params = array(1 => array($optionId, 'Integer'));
201 $dao = CRM_Core_DAO::executeQuery($query, $params);
202 if ($dao->fetch()) {
203 if (in_array($dao->dataType,
353ffa53
TO
204 array('Int', 'Float', 'Money', 'Boolean')
205 )) {
6a488035
TO
206 $value = 0;
207 }
208 else {
209 $value = '';
210 }
211 $params = array(
212 'optionId' => $optionId,
213 'fieldId' => $dao->id,
214 'value' => $value,
215 );
216 // delete this value from the tables
217 self::updateCustomValues($params);
218
219 // also delete this option value
220 $query = "
221DELETE
222FROM civicrm_option_value
223WHERE id = %1";
224 $params = array(1 => array($optionId, 'Integer'));
225 CRM_Core_DAO::executeQuery($query, $params);
226 }
227 }
228
b5c2afd0 229 /**
c490a46a 230 * @param array $params
b5c2afd0
EM
231 *
232 * @throws Exception
233 */
00be9182 234 public static function updateCustomValues($params) {
6a488035
TO
235 $optionDAO = new CRM_Core_DAO_OptionValue();
236 $optionDAO->id = $params['optionId'];
237 $optionDAO->find(TRUE);
238 $oldValue = $optionDAO->value;
239
240 // get the table, column, html_type and data type for this field
241 $query = "
242SELECT g.table_name as tableName ,
243 f.column_name as columnName,
244 f.data_type as dataType,
245 f.html_type as htmlType
246FROM civicrm_custom_group g,
247 civicrm_custom_field f
248WHERE f.custom_group_id = g.id
249 AND f.id = %1";
250 $queryParams = array(1 => array($params['fieldId'], 'Integer'));
251 $dao = CRM_Core_DAO::executeQuery($query, $queryParams);
252 if ($dao->fetch()) {
253 if ($dao->dataType == 'Money') {
254 $params['value'] = CRM_Utils_Rule::cleanMoney($params['value']);
255 }
256 switch ($dao->htmlType) {
257 case 'Autocomplete-Select':
258 case 'Select':
259 case 'Radio':
260 $query = "
261UPDATE {$dao->tableName}
262SET {$dao->columnName} = %1
263WHERE id = %2";
264 if ($dao->dataType == 'Auto-complete') {
265 $dataType = "String";
266 }
267 else {
268 $dataType = $dao->dataType;
269 }
270 $queryParams = array(
353ffa53
TO
271 1 => array(
272 $params['value'],
6a488035
TO
273 $dataType,
274 ),
275 2 => array(
276 $params['optionId'],
277 'Integer',
278 ),
279 );
280 break;
281
282 case 'AdvMulti-Select':
283 case 'Multi-Select':
284 case 'CheckBox':
285 $oldString = CRM_Core_DAO::VALUE_SEPARATOR . $oldValue . CRM_Core_DAO::VALUE_SEPARATOR;
286 $newString = CRM_Core_DAO::VALUE_SEPARATOR . $params['value'] . CRM_Core_DAO::VALUE_SEPARATOR;
353ffa53 287 $query = "
6a488035
TO
288UPDATE {$dao->tableName}
289SET {$dao->columnName} = REPLACE( {$dao->columnName}, %1, %2 )";
2aa397bc 290 $queryParams = array(
353ffa53 291 1 => array($oldString, 'String'),
6a488035
TO
292 2 => array($newString, 'String'),
293 );
294 break;
295
296 default:
297 CRM_Core_Error::fatal();
298 }
299 $dao = CRM_Core_DAO::executeQuery($query, $queryParams);
300 }
301 }
302
58eaa092
CW
303 /**
304 * When changing the value of an option this is called to update all corresponding custom data
305 *
306 * @param int $optionId
307 * @param string $newValue
308 */
309 public static function updateValue($optionId, $newValue) {
310 $optionValue = new CRM_Core_DAO_OptionValue();
311 $optionValue->id = $optionId;
312 $optionValue->find(TRUE);
313 $oldValue = $optionValue->value;
314 if ($oldValue == $newValue) {
315 return;
316 }
317
318 $customField = new CRM_Core_DAO_CustomField();
319 $customField->option_group_id = $optionValue->option_group_id;
320 $customField->find();
321 while ($customField->fetch()) {
322 $customGroup = new CRM_Core_DAO_CustomGroup();
323 $customGroup->id = $customField->custom_group_id;
324 $customGroup->find(TRUE);
325 if (CRM_Core_BAO_CustomField::isSerialized($customField)) {
326 $params = array(
327 1 => array(CRM_Utils_Array::implodePadded($oldValue), 'String'),
328 2 => array(CRM_Utils_Array::implodePadded($newValue), 'String'),
329 3 => array('%' . CRM_Utils_Array::implodePadded($oldValue) . '%', 'String'),
330 );
331 }
332 else {
333 $params = array(
334 1 => array($oldValue, 'String'),
335 2 => array($newValue, 'String'),
336 3 => array($oldValue, 'String'),
337 );
338 }
339 $sql = "UPDATE `{$customGroup->table_name}` SET `{$customField->column_name}` = REPLACE(`{$customField->column_name}`, %1, %2) WHERE `{$customField->column_name}` LIKE %3";
340 $customGroup->free();
341 CRM_Core_DAO::executeQuery($sql, $params);
342 }
343 $customField->free();
344 }
345
6a488035 346}