Merge pull request #5614 from JKingsnorth/CRM-16270
[civicrm-core.git] / api / v3 / ActivityType.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 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
27
28/**
244bbdd8 29 * The ActivityType api is deprecated. Please use the OptionValue api instead.
c28e1768 30 *
a14e9d08 31 * @deprecated
6a488035
TO
32 *
33 * @package CiviCRM_APIv3
6a488035
TO
34 */
35
a14e9d08 36/**
9d32e6f7
EM
37 * Notification of deprecated function.
38 *
a14e9d08 39 * @deprecated api notice
a6c01b45 40 * @return string
72b3a70c 41 * to indicate this entire api entity is deprecated
a14e9d08
CW
42 */
43function _civicrm_api3_activity_type_deprecation() {
244bbdd8 44 return 'The ActivityType api is deprecated. Please use the OptionValue api instead.';
a14e9d08
CW
45}
46
6a488035 47/**
9d32e6f7 48 * Retrieve activity types.
6a488035 49 *
c490a46a 50 * @param array $params
77b97be7 51 *
a6c01b45 52 * @return array
72b3a70c 53 * activity types keyed by id
244bbdd8 54 * @deprecated - use the getoptions action instead
6a488035
TO
55 */
56function civicrm_api3_activity_type_get($params) {
57
6a488035
TO
58 $activityTypes = CRM_Core_OptionGroup::values('activity_type');
59 return civicrm_api3_create_success($activityTypes, $params, 'activity_type', 'get');
60}
61
62/**
9d32e6f7 63 * Create activity type.
6a488035 64 *
cf470720 65 * @param array $params
6a488035 66 *
a6c01b45 67 * @return array
72b3a70c 68 * created / updated activity type
6a488035 69 *
244bbdd8 70 * @deprecated use the OptionValue api instead
6a488035
TO
71 */
72function civicrm_api3_activity_type_create($params) {
73
6a488035
TO
74 $action = 1;
75 $groupParams = array('name' => 'activity_type');
76
77 if ($optionValueID = CRM_Utils_Array::value('option_value_id', $params)) {
78 $action = 2;
79 }
80
6a488035
TO
81 $activityObject = CRM_Core_OptionValue::addOptionValue($params, $groupParams, $action, $optionValueID);
82 $activityType = array();
83 _civicrm_api3_object_to_array($activityObject, $activityType[$activityObject->id]);
84 return civicrm_api3_create_success($activityType, $params, 'activity_type', 'create');
85}
11e09c59
TO
86
87/**
0aa0303c
EM
88 * Adjust Metadata for Create action.
89 *
90 * The metadata is used for setting defaults, documentation & validation.
1c88e578 91 *
cf470720 92 * @param array $params
b081365f 93 * Array of parameters determined by getfields.
6a488035
TO
94 */
95function _civicrm_api3_activity_type_create_spec(&$params) {
d142432b
EM
96 $params['label'] = array(
97 'api.required' => 1,
98 'title' => 'Label',
99 'type' => CRM_Utils_Type::T_STRING,
100 );
101 $params['weight'] = array(
102 'api.required' => 1,
103 'title' => 'Weight',
104 'type' => CRM_Utils_Type::T_STRING,
105 );
6a488035
TO
106}
107
108/**
244bbdd8 109 * Delete ActivityType.
6a488035 110 *
cf470720
TO
111 * @param array $params
112 * Array including id of activity_type to delete.
22242c87 113 *
a6c01b45 114 * @return array
72b3a70c 115 * API result array
6a488035 116 *
244bbdd8 117 * @deprecated use OptionValue api
6a488035
TO
118 */
119function civicrm_api3_activity_type_delete($params) {
4e420887 120 return civicrm_api3_create_success(CRM_Core_BAO_OptionValue::del($params['id']), $params);
6a488035 121}