Merge pull request #5097 from PalanteJon/CRM-15917
[civicrm-core.git] / api / v3 / OptionValue.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
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 * This api exposes CiviCRM option values.
30 * Values are grouped by "OptionGroup"
31 *
32 * @package CiviCRM_APIv3
33 */
34
35 /**
36 * Retrieve one or more option values.
37 *
38 * @param array $params
39 *
40 * @return array
41 * Details of found Option Values
42 */
43 function civicrm_api3_option_value_get($params) {
44
45 if (empty($params['option_group_id']) && !empty($params['option_group_name'])) {
46 $opt = array('version' => 3, 'name' => $params['option_group_name']);
47 $optionGroup = civicrm_api('OptionGroup', 'Get', $opt);
48 if (empty($optionGroup['id'])) {
49 return civicrm_api3_create_error("option group name does not correlate to a single option group");
50 }
51 $params['option_group_id'] = $optionGroup['id'];
52 }
53
54 return _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $params);
55 }
56
57 /**
58 * Add an OptionValue.
59 *
60 * @param array $params
61 *
62 * @throws API_Exception
63 * @return array
64 * Array of newly created option_value property values.
65 */
66 function civicrm_api3_option_value_create($params) {
67 $result = _civicrm_api3_basic_create(_civicrm_api3_get_BAO(__FUNCTION__), $params);
68 if (!empty($params['id']) && !array_key_exists('option_group_id', $params)) {
69 $groupId = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_OptionValue',
70 $params['id'], 'option_group_id', 'id'
71 );
72 }
73 else {
74 $groupId = $params['option_group_id'];
75 }
76
77 civicrm_api('option_value', 'getfields', array('version' => 3, 'cache_clear' => 1, 'option_group_id' => $groupId));
78 return $result;
79 }
80
81 /**
82 * Adjust Metadata for Create action.
83 *
84 * The metadata is used for setting defaults, documentation & validation.
85 *
86 * @param array $params
87 * Array of parameters determined by getfields.
88 */
89 function _civicrm_api3_option_value_create_spec(&$params) {
90 $params['is_active']['api.default'] = 1;
91 //continue to support component
92 $params['component_id']['api.aliases'] = array('component');
93 $params['name']['api.aliases'] = array('label');
94 $params['option_group_id']['api.required'] = TRUE;
95 }
96
97 /**
98 * Deletes an existing option value.
99 *
100 * @param array $params
101 *
102 * @return array
103 * Api result
104 */
105 function civicrm_api3_option_value_delete($params) {
106 // We will get the option group id before deleting so we can flush pseudoconstants.
107 $optionGroupID = civicrm_api('option_value', 'getvalue', array('version' => 3, 'id' => $params['id'], 'return' => 'option_group_id'));
108 if (CRM_Core_BAO_OptionValue::del((int) $params['id'])) {
109 civicrm_api('option_value', 'getfields', array('version' => 3, 'cache_clear' => 1, 'option_group_id' => $optionGroupID));
110 return civicrm_api3_create_success();
111 }
112 else {
113 civicrm_api3_create_error('Could not delete OptionValue ' . $params['id']);
114 }
115 }