Update debugging page text
[civicrm-core.git] / api / v3 / ActivityType.php
CommitLineData
6a488035 1<?php
6a488035
TO
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
6a488035 5 +--------------------------------------------------------------------+
731a0992 6 | Copyright CiviCRM LLC (c) 2004-2014 |
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/**
c28e1768
CW
29 * The activity_type api is deprecated. Please use the option_value api instead.
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() {
44 return 'The activity_type api is deprecated. Please use the option_value api instead.';
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
4e420887 54 * @deprecated - use getoptions
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 *
b081365f 70 * @deprecated use option_value api
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) {
96 $params['label']['api.required'] = 1;
1fdb479f 97 $params['label']['title'] = 'Label';
6a488035 98 $params['weight']['api.required'] = 1;
1fdb479f 99 $params['weight']['title'] = 'Weight';
6a488035
TO
100}
101
102/**
9d32e6f7 103 * Delete activity type.
6a488035 104 *
cf470720
TO
105 * @param array $params
106 * Array including id of activity_type to delete.
22242c87 107 *
a6c01b45 108 * @return array
72b3a70c 109 * API result array
6a488035 110 *
b081365f 111 * @deprecated use option_value api
6a488035
TO
112 */
113function civicrm_api3_activity_type_delete($params) {
4e420887 114 return civicrm_api3_create_success(CRM_Core_BAO_OptionValue::del($params['id']), $params);
6a488035 115}