CRM-15905 fix - API: problem sorting contacts on ID
[civicrm-core.git] / api / v3 / RelationshipType.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 +--------------------------------------------------------------------+
26 */
27
28/**
29 * new version of civicrm apis. See blog post at
30 * http://civicrm.org/node/131
31 *
32 * @package CiviCRM_APIv3
33 * @subpackage API_Contact
731a0992 34 * @copyright CiviCRM LLC (c) 2004-2014
6a488035 35 * $Id: Contact.php 30415 2010-10-29 12:02:47Z shot $
6a488035
TO
36 */
37
6a488035 38/**
9d32e6f7 39 * Create relationship type.
6a488035 40 *
cf470720 41 * @param array $params
2e66abf8 42 * Array per getfields metadata.
6a488035 43 *
72b3a70c 44 * @return array
6a488035
TO
45 */
46function civicrm_api3_relationship_type_create($params) {
47
48 if (!isset($params['label_a_b'])) {
49
50 $params['label_a_b'] = $params['name_a_b'];
51 }
52
53 if (!isset($params['label_b_a'])) {
54
55 $params['label_b_a'] = $params['name_b_a'];
56 }
57
6a488035
TO
58 $ids = array();
59 if (isset($params['id']) && !CRM_Utils_Rule::integer($params['id'])) {
60 return civicrm_api3_create_error('Invalid value for relationship type ID');
61 }
62 else {
63 $ids['relationshipType'] = CRM_Utils_Array::value('id', $params);
64 }
65
6a488035
TO
66 $relationType = CRM_Contact_BAO_RelationshipType::add($params, $ids);
67
68 $relType = array();
69
70 _civicrm_api3_object_to_array($relationType, $relType[$relationType->id]);
71
72 return civicrm_api3_create_success($relType, $params, 'relationship_type', 'create', $relationType);
73}
11e09c59
TO
74
75/**
0aa0303c
EM
76 * Adjust Metadata for Create action.
77 *
78 * The metadata is used for setting defaults, documentation & validation.
1c88e578 79 *
cf470720
TO
80 * @param array $params
81 * Array or parameters determined by getfields.
6a488035
TO
82 */
83function _civicrm_api3_relationship_type_create_spec(&$params) {
84 $params['contact_type_a']['api.required'] = 1;
85 $params['contact_type_b']['api.required'] = 1;
86 $params['name_a_b']['api.required'] = 1;
87 $params['name_b_a']['api.required'] = 1;
4471f8ca 88 $params['is_active']['api.default'] = 1;
6a488035
TO
89}
90
91/**
9d32e6f7
EM
92 * Get all relationship types.
93 *
d0997921 94 * @param array $params
d1b0d05e 95 *
645ee340 96 * @return array
6a488035
TO
97 */
98function civicrm_api3_relationship_type_get($params) {
6a488035
TO
99 return _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $params);
100}
101
102/**
9d32e6f7 103 * Delete a relationship type.
6a488035 104 *
488e7aba 105 * @param array $params
6a488035 106 *
a6c01b45 107 * @return array
72b3a70c 108 * API Result Array
6a488035
TO
109 */
110function civicrm_api3_relationship_type_delete($params) {
b2402735 111 return _civicrm_api3_basic_delete(_civicrm_api3_get_BAO(__FUNCTION__), $params);
6a488035 112}
bc255d1d
CW
113
114/**
9d32e6f7
EM
115 * Get list defaults for relationship types.
116 *
bc255d1d
CW
117 * @see _civicrm_api3_generic_getlist_defaults
118 *
119 * @param array $request
dc64d047 120 *
bc255d1d
CW
121 * @return array
122 */
123function _civicrm_api3_relationship_type_getlist_defaults($request) {
124 return array(
125 'label_field' => 'label_a_b',
126 'search_field' => 'label_a_b',
127 );
cbcb7579 128}