Merge pull request #3837 from eileenmcnaughton/CRM-15113
[civicrm-core.git] / CRM / Core / OptionValue.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.4 |
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 class CRM_Core_OptionValue {
36
37 /**
38 * static field for all the option value information that we can potentially export
39 *
40 * @var array
41 * @static
42 */
43 static $_exportableFields = NULL;
44
45 /**
46 * static field for all the option value information that we can potentially export
47 *
48 * @var array
49 * @static
50 */
51 static $_importableFields = NULL;
52
53 /**
54 * static field for all the option value information that we can potentially export
55 *
56 * @var array
57 * @static
58 */
59 static $_fields = NULL;
60
61 /**
62 * Function to return option-values of a particular group
63 *
64 * @param array $groupParams Array containing group fields whose option-values is to retrieved.
65 * @param string $orderBy for orderBy clause
66 * @param array $links has links like edit, delete, disable ..etc
67 *
68 * @return array of option-values
69 *
70 * @access public
71 * @static
72 */
73 static function getRows($groupParams, $links, $orderBy = 'weight') {
74 $optionValue = array();
75
76 $optionGroupID = NULL;
77 if (!isset($groupParams['id']) || !$groupParams['id']) {
78 if ($groupParams['name']) {
79 $config = CRM_Core_Config::singleton();
80
81 $optionGroup = CRM_Core_BAO_OptionGroup::retrieve($groupParams, $dnc);
82 $optionGroupID = $optionGroup->id;
83 }
84 }
85 else {
86 $optionGroupID = $groupParams['id'];
87 }
88
89 $groupName = CRM_Utils_Array::value('name', $groupParams);
90 if (!$groupName && $optionGroupID) {
91 $groupName = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_OptionGroup',
92 $optionGroupID, 'name', 'id'
93 );
94 }
95
96 $dao = new CRM_Core_DAO_OptionValue();
97
98 if ($optionGroupID) {
99 $dao->option_group_id = $optionGroupID;
100
101 if (in_array($groupName, CRM_Core_OptionGroup::$_domainIDGroups)) {
102 $dao->domain_id = CRM_Core_Config::domainID();
103 }
104
105 $dao->orderBy($orderBy);
106 $dao->find();
107 }
108
109 if ($groupName == 'case_type') {
110 $caseTypeIds = CRM_Case_BAO_Case::getUsedCaseType();
111 }
112 elseif ($groupName == 'case_status') {
113 $caseStatusIds = CRM_Case_BAO_Case::getUsedCaseStatuses();
114 }
115
116 $componentNames = CRM_Core_Component::getNames();
117 $visibilityLabels = CRM_Core_PseudoConstant::visibility();
118 while ($dao->fetch()) {
119 $optionValue[$dao->id] = array();
120 CRM_Core_DAO::storeValues($dao, $optionValue[$dao->id]);
121 // form all action links
122 $action = array_sum(array_keys($links));
123
124 // update enable/disable links depending on if it is is_reserved or is_active
125 if ($dao->is_reserved) {
126 $action = CRM_Core_Action::UPDATE;
127 }
128 else {
129 if ($dao->is_active) {
130 $action -= CRM_Core_Action::ENABLE;
131 }
132 else {
133 $action -= CRM_Core_Action::DISABLE;
134 }
135 if ((($groupName == 'case_type') && in_array($dao->value, $caseTypeIds)) ||
136 (($groupName == 'case_status') && in_array($dao->value, $caseStatusIds))
137 ) {
138 $action -= CRM_Core_Action::DELETE;
139 }
140 }
141
142 $optionValue[$dao->id]['label'] = htmlspecialchars($optionValue[$dao->id]['label']);
143 $optionValue[$dao->id]['order'] = $optionValue[$dao->id]['weight'];
144 $optionValue[$dao->id]['action'] = CRM_Core_Action::formLink($links, $action,
145 array(
146 'id' => $dao->id,
147 'gid' => $optionGroupID,
148 'value' => $dao->value,
149 )
150 );
151
152 if (CRM_Utils_Array::value('component_id', $optionValue[$dao->id])) {
153 $optionValue[$dao->id]['component_name'] = $componentNames[$optionValue[$dao->id]['component_id']];
154 }
155 else {
156 $optionValue[$dao->id]['component_name'] = 'Contact';
157 }
158
159 if (CRM_Utils_Array::value('visibility_id', $optionValue[$dao->id])) {
160 $optionValue[$dao->id]['visibility_label'] = $visibilityLabels[$optionValue[$dao->id]['visibility_id']];
161 }
162 }
163
164 return $optionValue;
165 }
166
167 /**
168 * Function to add/edit option-value of a particular group
169 *
170 * @param array $params Array containing exported values from the invoking form.
171 * @param array $groupParams Array containing group fields whose option-values is to retrieved/saved.
172 * @param string $orderBy for orderBy clause
173 * @param integer $optionValueID has the id of the optionValue being edited, disabled ..etc
174 *
175 * @return array of option-values
176 *
177 * @access public
178 * @static
179 */
180 static function addOptionValue(&$params, &$groupParams, &$action, &$optionValueID) {
181 $params['is_active'] = CRM_Utils_Array::value('is_active', $params, FALSE);
182 // checking if the group name with the given id or name (in $groupParams) exists
183 if (!empty($groupParams)) {
184 $config = CRM_Core_Config::singleton();
185 $groupParams['is_active'] = 1;
186 $optionGroup = CRM_Core_BAO_OptionGroup::retrieve($groupParams, $defaults);
187 }
188
189 // if the corresponding group doesn't exist, create one, provided $groupParams has 'name' in it.
190 if (!$optionGroup->id) {
191 if ($groupParams['name']) {
192 $newOptionGroup = CRM_Core_BAO_OptionGroup::add($groupParams, $defaults);
193 $params['weight'] = 1;
194 $optionGroupID = $newOptionGroup->id;
195 }
196 }
197 else {
198 $optionGroupID = $optionGroup->id;
199 $oldWeight = NULL;
200 if ($optionValueID) {
201 $oldWeight = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_OptionValue', $optionValueID, 'weight', 'id');
202 }
203 $fieldValues = array('option_group_id' => $optionGroupID);
204 $params['weight'] = CRM_Utils_Weight::updateOtherWeights('CRM_Core_DAO_OptionValue', $oldWeight, CRM_Utils_Array::value('weight', $params), $fieldValues);
205 }
206 $params['option_group_id'] = $optionGroupID;
207
208 if (($action & CRM_Core_Action::ADD) && !CRM_Utils_Array::value('value', $params)) {
209 $fieldValues = array('option_group_id' => $optionGroupID);
210 // use the next available value
211 /* CONVERT(value, DECIMAL) is used to convert varchar
212 field 'value' to decimal->integer */
213
214 $params['value'] = (int) CRM_Utils_Weight::getDefaultWeight('CRM_Core_DAO_OptionValue',
215 $fieldValues,
216 'CONVERT(value, DECIMAL)'
217 );
218 }
219 if (!$params['label'] && $params['name']) {
220 $params['label'] = $params['name'];
221 }
222
223 // set name to label if it's not set - but *only* for ADD action (CRM-3522)
224 if (($action & CRM_Core_Action::ADD) && !CRM_Utils_Array::value('name', $params) && $params['label']) {
225 $params['name'] = $params['label'];
226 }
227 if ($action & CRM_Core_Action::UPDATE) {
228 $ids['optionValue'] = $optionValueID;
229 }
230 $optionValue = CRM_Core_BAO_OptionValue::add($params, $ids);
231 return $optionValue;
232 }
233
234 /**
235 * Check if there is a record with the same name in the db
236 *
237 * @param string $value the value of the field we are checking
238 * @param string $daoName the dao object name
239 * @param string $daoID the id of the object being updated. u can change your name
240 * as long as there is no conflict
241 * @param string $fieldName the name of the field in the DAO
242 *
243 * @return boolean true if object exists
244 * @access public
245 * @static
246 */
247 static function optionExists($value, $daoName, $daoID, $optionGroupID, $fieldName = 'name') {
248 $object = new $daoName();
249 $object->$fieldName = $value;
250 $object->option_group_id = $optionGroupID;
251
252 if ($object->find(TRUE)) {
253 return ($daoID && $object->id == $daoID) ? TRUE : FALSE;
254 }
255 else {
256 return TRUE;
257 }
258 }
259
260 /**
261 * Check if there is a record with the same name in the db
262 *
263 * @param string $value the value of the field we are checking
264 * @param string $daoName the dao object name
265 * @param string $daoID the id of the object being updated. u can change your name
266 * as long as there is no conflict
267 * @param string $fieldName the name of the field in the DAO
268 *
269 * @return boolean true if object exists
270 * @access public
271 * @static
272 */
273 static function getFields($mode = '', $contactType = 'Individual') {
274 $key = "$mode $contactType";
275 if (empty(self::$_fields[$key]) || !self::$_fields[$key]) {
276 self::$_fields[$key] = array();
277
278 $option = CRM_Core_DAO_OptionValue::import();
279
280 foreach (array_keys($option) as $id) {
281 $optionName = $option[$id];
282 }
283
284 $nameTitle = array();
285 if ($mode == 'contribute') {
286 $nameTitle = array(
287 'payment_instrument' => array(
288 'name' => 'payment_instrument',
289 'title' => ts('Payment Instrument'),
290 'headerPattern' => '/^payment|(p(ayment\s)?instrument)$/i',
291 ),
292 );
293 }
294 elseif ($mode == '') {
295 //the fields email greeting and postal greeting are meant only for Individual and Household
296 //the field addressee is meant for all contact types, CRM-4575
297 if (in_array($contactType, array(
298 'Individual', 'Household', 'Organization', 'All'))) {
299 $nameTitle = array(
300 'addressee' => array(
301 'name' => 'addressee',
302 'title' => ts('Addressee'),
303 'headerPattern' => '/^addressee$/i',
304 ),
305 );
306 $title = array(
307 'email_greeting' => array(
308 'name' => 'email_greeting',
309 'title' => ts('Email Greeting'),
310 'headerPattern' => '/^email_greeting$/i',
311 ),
312 'postal_greeting' => array(
313 'name' => 'postal_greeting',
314 'title' => ts('Postal Greeting'),
315 'headerPattern' => '/^postal_greeting$/i',
316 ),
317 );
318 $nameTitle = array_merge($nameTitle, $title);
319 }
320 }
321
322 if (is_array($nameTitle)) {
323 foreach ($nameTitle as $name => $attribs) {
324 self::$_fields[$key][$name] = $optionName;
325 list($tableName, $fieldName) = explode('.', $optionName['where']);
326 self::$_fields[$key][$name]['where'] = "{$name}.label";
327 foreach ($attribs as $k => $val) {
328 self::$_fields[$key][$name][$k] = $val;
329 }
330 }
331 }
332 }
333
334 return self::$_fields[$key];
335 }
336
337 /**
338 * build select query in case of option-values
339 *
340 * @return void
341 * @access public
342 */
343 static function select(&$query) {
344 if (!empty($query->_params) || !empty($query->_returnProperties)) {
345 $field = self::getFields();
346 foreach ($field as $name => $values) {
347 if (CRM_Utils_Array::value('pseudoconstant', $values)) {
348 continue;
349 }
350 list($tableName, $fieldName) = explode('.', $values['where']);
351 if (CRM_Utils_Array::value($name, $query->_returnProperties)) {
352 $query->_select["{$name}_id"] = "{$name}.value as {$name}_id";
353 $query->_element["{$name}_id"] = 1;
354 $query->_select[$name] = "{$name}.{$fieldName} as $name";
355 $query->_tables[$tableName] = 1;
356 $query->_element[$name] = 1;
357 }
358 }
359 }
360 }
361
362 /**
363 * Function to return option-values of a particular group
364 *
365 * @param array $groupParams Array containing group fields
366 * whose option-values is to retrieved.
367 * @param array $values (referance) to the array which
368 * will have the values for the group
369 * @param string $orderBy for orderBy clause
370 *
371 * @param boolean $isActive do you want only active option values?
372 *
373 * @return array of option-values
374 *
375 * @access public
376 * @static
377 */
378 static function getValues($groupParams, &$values, $orderBy = 'weight', $isActive = FALSE) {
379 if (empty($groupParams)) {
380 return NULL;
381 }
382 $select = "
383 SELECT
384 option_value.id as id,
385 option_value.label as label,
386 option_value.value as value,
387 option_value.name as name,
388 option_value.description as description,
389 option_value.weight as weight,
390 option_value.is_active as is_active,
391 option_value.is_default as is_default";
392
393 $from = "
394 FROM
395 civicrm_option_value as option_value,
396 civicrm_option_group as option_group ";
397
398 $where = " WHERE option_group.id = option_value.option_group_id ";
399
400 if ($isActive) {
401 $where .= " AND option_value.is_active = " . $isActive;
402 }
403
404 $order = " ORDER BY " . $orderBy;
405
406 $groupId = CRM_Utils_Array::value('id', $groupParams);
407 $groupName = CRM_Utils_Array::value('name', $groupParams);
408
409 if ($groupId) {
410 $where .= " AND option_group.id = %1";
411 $params[1] = array($groupId, 'Integer');
412 if (!$groupName) {
413 $groupName = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_OptionGroup',
414 $groupId, 'name', 'id'
415 );
416 }
417 }
418
419 if ($groupName) {
420 $where .= " AND option_group.name = %2";
421 $params[2] = array($groupName, 'String');
422 }
423
424 if (in_array($groupName, CRM_Core_OptionGroup::$_domainIDGroups)) {
425 $where .= " AND option_value.domain_id = " . CRM_Core_Config::domainID();
426 }
427
428 $query = $select . $from . $where . $order;
429
430 $dao = CRM_Core_DAO::executeQuery($query, $params);
431
432 while ($dao->fetch()) {
433 $values[$dao->id] = array(
434 'id' => $dao->id,
435 'label' => $dao->label,
436 'value' => $dao->value,
437 'name' => $dao->name,
438 'description' => $dao->description,
439 'weight' => $dao->weight,
440 'is_active' => $dao->is_active,
441 'is_default' => $dao->is_default,
442 );
443 }
444 }
445 }
446