Merge pull request #11660 from JMAConsulting/CRM-21754
[civicrm-core.git] / api / v3 / ActivityType.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2017 |
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 * The ActivityType api is deprecated. Please use the OptionValue api instead.
30 *
31 * @deprecated
32 *
33 * @package CiviCRM_APIv3
34 */
35
36 /**
37 * Notification of deprecated function.
38 *
39 * @deprecated api notice
40 * @return string
41 * to indicate this entire api entity is deprecated
42 */
43 function _civicrm_api3_activity_type_deprecation() {
44 return 'The ActivityType api is deprecated. Please use the OptionValue api instead.';
45 }
46
47 /**
48 * Retrieve activity types.
49 *
50 * @param array $params
51 *
52 * @return array
53 * activity types keyed by id
54 * @deprecated - use the getoptions action instead
55 */
56 function civicrm_api3_activity_type_get($params) {
57
58 $activityTypes = CRM_Core_OptionGroup::values('activity_type');
59 return civicrm_api3_create_success($activityTypes, $params, 'activity_type', 'get');
60 }
61
62 /**
63 * Create activity type.
64 *
65 * @param array $params
66 *
67 * @return array
68 * created / updated activity type
69 *
70 * @deprecated use the OptionValue api instead
71 */
72 function civicrm_api3_activity_type_create($params) {
73
74 $action = 1;
75
76 if ($optionValueID = CRM_Utils_Array::value('option_value_id', $params)) {
77 $action = 2;
78 }
79
80 $activityObject = CRM_Core_OptionValue::addOptionValue($params, 'activity_type', $action, $optionValueID);
81 $activityType = array();
82 _civicrm_api3_object_to_array($activityObject, $activityType[$activityObject->id]);
83 return civicrm_api3_create_success($activityType, $params, 'activity_type', 'create');
84 }
85
86 /**
87 * Adjust Metadata for Create action.
88 *
89 * The metadata is used for setting defaults, documentation & validation.
90 *
91 * @param array $params
92 * Array of parameters determined by getfields.
93 */
94 function _civicrm_api3_activity_type_create_spec(&$params) {
95 $params['label'] = array(
96 'api.required' => 1,
97 'title' => 'Label',
98 'type' => CRM_Utils_Type::T_STRING,
99 );
100 $params['weight'] = array(
101 'api.required' => 1,
102 'title' => 'Weight',
103 'type' => CRM_Utils_Type::T_STRING,
104 );
105 }
106
107 /**
108 * Delete ActivityType.
109 *
110 * @param array $params
111 * Array including id of activity_type to delete.
112 * @return array API result array
113 * @throws API_Exception
114 * @deprecated use OptionValue api
115 */
116 function civicrm_api3_activity_type_delete($params) {
117 $result = CRM_Core_BAO_OptionValue::del($params['id']);
118 if ($result) {
119 return civicrm_api3_create_success(TRUE, $params);
120 }
121 throw new API_Exception("Failure to delete activity type id {$params['id']}");
122 }